iOS-真机运行错误

iOS 真机 dyld: Library not loaded: 问题
https://www.jianshu.com/p/779d73f8124d

Your development team, "", does not support the Push Notifications capability.
https://www.jianshu.com/p/ae0afe79c6bd

iOS-真机运行错误_第1张图片
image.png

签名错误

iOS-真机运行错误_第2张图片
image.png

iOS-真机运行错误_第3张图片
image.png

不能运行高版本iphone
https://github.com/iGhibli/iOS-DeviceSupport

或者复制最新的包,改名为真机测试需要的版本
在Finder状态下前往文件夹,快捷键:shift+command+G,填写路径
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

/Applications/Xcode的副本.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

/应用程序/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport


72D2D1FB-0714-4E5A-A65B-5FD81474658F.png
iOS-真机运行错误_第4张图片
Snip20160806_3.png
错误原因是这个bundle ID已经被别人提前占用了.这种错误一般发生在你运行别人的项目.
解决办法当然是修改你的bundle ID 了
iOS-真机运行错误_第5张图片
Snip20160714_9.png
解决代码签名问题
iOS-真机运行错误_第6张图片
Snip20160714_11.png
iOS-真机运行错误_第7张图片
Snip20160811_5.png

解决    http://blog.csdn.net/hxmcnu/article/details/50188765

2、在projectName.xcodeproj文件上右键“显示包内容”,用文本编辑器打开“project.pbxproj"文件
3、查找:
com.apple.Push = {enabled = 1;};
修改为:
com.apple.Push = {enabled = 0;};

每个账号只允许100多个 bundle ID , 解决方法 删掉,重新登录

iOS-真机运行错误_第8张图片
Snip20160831_1.png
iOS-真机运行错误_第9张图片
![Snip20160509_1.png](http://upload-images.jianshu.io/upload_images/1851858-bcbe464ff261faff.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
iOS-真机运行错误_第10张图片
Snip20161006_1.png
iOS-真机运行错误_第11张图片
Snip20161006_2.png

你可能感兴趣的:(iOS-真机运行错误)