
xcode
Sidney星眔
我来到这个城市,寻找属于我的路
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Xcode 常用快捷键
常用快捷键 快捷键 作用 Command + W 关闭窗口,也可以用来关闭模拟器 Command + Option + { 向上移动选中的代码块 Command + Option + } 向下移动选中的代码块 Shift + ←/→ 选中光标左边/右边的一个字符 Command + Shift + ←/→ 选中光标左边/...原创 2017-06-25 09:56:11 · 415 阅读 · 0 评论 -
Xcode Couldn’t communicate with a helper application
Xcode Couldn’t communicate with a helper application.xcrun git config --global user.email 你电脑的名字@email.localxcrun git config --global user.name "你电脑的名字"原创 2017-06-25 11:08:08 · 747 阅读 · 0 评论 -
真机调试报错dyld: Library not loaded: @rpath/AFNetworking.framework/AFNetworking
如果是使用 cocoapods 管理的直接 pod install ,然后删掉~/Library/Developer/Xcode/DerivedData清空DerivedData里的内容原创 2018-04-09 18:12:48 · 2499 阅读 · 0 评论 -
Xcode编译报错 Invalid bitcode signature 和linker command failed with exit code 1
如果在你报错详情有armv7等cpu架构字样 可以断定是你active scheme (也就是切换模拟器和真机的地方)是不是一把锤子(Generic iOS Device) 解决方法:就是切换到模拟器或真机就ok了总结:很多时候就是你的调试真机的时候,手机断开数据线了,然后Xcode断了连接,然后就会自动切换到一把==锤子==。而此时你去编译的时候就有可能编译报错...原创 2018-04-10 14:29:53 · 1011 阅读 · 0 评论 -
Pod init install报错Unable to add a source with url
首先我们需要重新安装cocoapods如果出现下面报错: You don’t have write permissions for the /usr/bin directory.使用这条命令可以进入安装:sudo gem install -n /usr/local/bin cocoapods如果pod install出现下面的错误: [!] Unable to a...原创 2018-04-11 10:33:02 · 1222 阅读 · 0 评论