摘要:
设置file-->Workspace Settings-->Build System:Legacy Build System 阅读全文
摘要:
上传ipa包时候报错: ERROR ITMS-90535: "Unexpected CFBundleExecutable Key. The bundle at 'Payload/**.app/guide.bundle' does not contain a bundle executable. If 阅读全文
摘要:
ssh 远程登录打包的时候,在最后一步签名的时候出错, 提示: CodeSign .... User interaction is not allowed. 原来是需要UI界面来提示使用钥匙串中的证书进行签名,默认的证书都添加到了登录中,可以在打包前使用下边命令使用密码打开钥匙串: security 阅读全文
摘要:
这是因为里面有用到C++ 的一些东西。 两种解决办法: 第一种:TARGETS -> Build Phases -> Link Binary With Libraries 添加libc++.dylib或libc++.tdb 第二种:找到设置搜索 Other Linker Flags 后面输入 -li 阅读全文
摘要:
检测是否含有UIWebView 1.下载class-dump (http://stevenygard.com/projects/class-dump/) 2.解压后将class-dump 复制到/usr/bin/class-dump 如果是OS X 10.11及以上系统,因为没有/usr/bin文件 阅读全文
摘要:
参数类型需修改为**类* __nullable例如(NSString *__nullable)str; 阅读全文
摘要:
我的Gitbook版本:3.2.3 这是我第一次用Gitbook写电子书,我首先编辑好了README.md和 SUMMARY.md,然后运行gitbook init,这时候生成了目录下对应的文件结构,接着我运行gitbook serve,检测环境是否正常。 然而这时候突然报错: Error: ENO 阅读全文
摘要:
只想pod update失败 解决办法: 1. podfile文件中指定source源为master: source 'https://github.com/CocoaPods/Specs.git' 2.执行pod repo remove trunk移除trunk源 阅读全文