http://www.cocoachina.com/bbs/read.php?tid=1696016
升级xcode8已是必然,升级ios10的用户不能说大有人在,应该也不会少,楼主听说,如果不升级xcode8,上架最新的包,那么可能应用在ios10 上是不支持的.
so,这些xcode8的新特性,你应该了解!!!
1.快捷键 command + / 注释失效; 解决方法1: Xcode -> preferences -> key bindings 中的comment selection 是否设置上快捷键了 解决方法2:http://blog.csdn.net/jnbbwyth/article/details/52576169 第四个问题详解
2.真机测试不在支持ios8.0以下版本; (已解决)追加:xcode8支持ios8以下真机测试方法:1.应用程序-xcode 显示包内容-Contents-Developer-Platforms-iPhoneOS.platform-DeviceSupport 把里边 6.0 6.1 7.0 7.1 的文件夹粘贴到xcode8 对应的文件夹内 2. 应用程序-xcode 显示包内容-Contents-Developer-Platforms-iPhoneOS.platform-Developer-SDKs-iPhoneOS.sdk-SDKSettings.plist 文件下DefaultProperties - DEPLOYMENT_TARGET_SUGGESTE... 该数组中添加 6.0 6.1 7.0 7.1 对应的测试版本,(注意:如果你的文件是只读模式的,那么是不能修改的,你需要把Contents-Developer-Platforms-iPhoneOS.platform-Developer-SDKs-iPhoneOS.sdk-SDKSettings.plist 这些文件的只读模式都改成读写模式)这个版本排序一定要是从小到大,直接把小的添加到下面是不管用的,必须把小的拖到最上边.这个时候退出你的Xcode,然后重新启动,你就会发现ios8.0以下的真机 也可以正常测试了 非常感谢ID:84447879 的建议方法.分享给大家.
3.如果项目中包含证书,证书内包含的Id 必须与 bundle Id 保持一致才行,开发者team账号必须创建了 该 bundle Id 对应的证书,就是说不是所有的苹果账号都能真机测试了(这里说的是项目中有 证书的前提下)
4.使用Xcode 8创建新项目的时候,会让你选择开发者team为了自动生成对应的证书。在新老项目的General中也可以对签名进行设置,勾选自动管理证书(可选的),Xcode会自动替你生成调试证书和描述问题,证书与描述文件有效期为6天,避免了大量的垃圾冗余证书占用问题。
5.- (void)webView:(UIWebView *)webView didFailLoadWithError:(nullable NSError *)error; 变成了- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
6.版本target 从8.0 起步了,但是老代码的7.1 用xcode8 打开还是显示7.1 ,就是不知道起不起作用了.追加:可以手写输入7.1,仍然管用.
7.之前两个汉字占用24宽度,现在占用27了,导致部分UI可能需要重新适配; 或者判断下当前系统版本,如果>=10.0,就让需要适配的控件调用 sizetofit 方法.
8.麦克风权限:Privacy - Microphone Usage Description 是否允许此App使用你的麦克风?
相机权限: Privacy - Camera Usage Description 是否允许此App使用你的相机?
相册权限: Privacy - Photo Library Usage Description 是否允许此App访问你的媒体资料库?
通讯录权限: Privacy - Contacts Usage Description 是否允许此App访问你的通讯录?
蓝牙权限:Privacy - Bluetooth Peripheral Usage Description 是否许允此App使用蓝牙?
语音转文字权限:Privacy - Speech Recognition Usage Description 是否允许此App使用语音识别?
日历权限:Privacy - Calendars Usage Description 是否允许此App使用日历?
定位权限:Privacy - Location When In Use Usage Description 我们需要通过您的地理位置信息获取您周边的相关数据
定位权限: Privacy - Location Always Usage Description 我们需要通过您的地理位置信息获取您周边的相关数据
9.引用:45楼:Dcook -> MJRefresh iOS10的系统上每次下拉刷新后没办法完全恢复Normal 状态 Y轴距离上总是相差20左右...(楼主个人也使用的MJ,表示暂时没有发现这个问题)
解决方案 http://www.cnblogs.com/dev1024/p/5889865.html
10.引用:雨季的雾 ItunesConnect上传遇到问题,ERROR ITMS-90682: "Invalid Bundle. The asset catalog at 'Payload/ElitePlus.app/Assets.car' can't contain 16-bit or P3 assets if the app is targeting iOS releases earlier than iOS 9.3." 解决方法:http://www.cnblogs.com/zyonbao/p/5872943.html http://www.jianshu.com/p/b13e1e441116
11.iOS 10 因苹果健康导致闪退 crash 原文链接:http://www.jianshu.com/p/545bd1bf5a23
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'NSHealthUpdateUsageDescription must be set in the app's Info.plist in order to request write authorization.'
12.引用79楼:新增了CAAnimationDelegate ,之前使用CAAnimation的文件需要强制添加代理
好文章推荐1: http://blog.csdn.net/jnbbwyth/article/details/52576169 (内含:1.证书管理 2.xib注意事项 3.代码及Api注意 4.代码注释不能用的解决办法 5.权限以及相关设置 6.字体变大,原有frame需要适配 7.推送 8.屏蔽杂乱无章的bug)
好文章推荐2:转自 舞小月 http://www.cocoachina.com/bbs/read.php?tid-1695563.html
iOS10相册相机闪退bug
http://www.jianshu.com/p/5085430b029f
iOS 10 因苹果健康导致闪退 crash
http://www.jianshu.com/p/545bd1bf5a23
麦克风、多媒体、地图、通讯录
ios10相机等崩溃
http://www.jianshu.com/p/ec15dadd38f3
iOS10 配置须知
http://www.jianshu.com/p/65f21dc5c556
iOS开发 适配iOS10以及Xcode8
http://www.jianshu.com/p/9756992a35ca
iOS 10 的适配问题
http://www.jianshu.com/p/f8151d556930
问题汇总:(待解决)
1.引用36楼:状态栏隐藏失效了
- (BOOL)prefersStatusBarHidden{
return YES;
}
2.引用37楼:APP切到后台 然后从后台切回APP就闪退了 升级到IOS10各种莫名其妙的闪退怎么回事
3.引用44楼:xcode8使用source control 中git提交代码也有点不正常,远端存在一个master分支和一个dev分支,我这边本地有master dev 再多一个coder1的分支,当切换到coder1分支上无法拉取dev或者master上的代码,只有切换到master或者dev上才能拉取
4.引用27楼:nslog信息打印不全
5.引用50楼:请问ImagePickerController.cameraViewTransform这个属性在iOS10是不是不能用了?
6.引用57楼:app在iOS10上无法访问网络,打开app不弹出是否允许使用网络弹窗,在设置-无线局域网-使用无线局域网与蜂窝移动的应用里也无法看到该app,有些机子重启或者还原网络设置可以解决,这是系统BUG么?
7.引用35,64楼:Xcode8 + iOS8 进入断点很卡,何解?
持续更新中...
so,这些xcode8的新特性,你应该了解!!!
1.快捷键 command + / 注释失效; 解决方法1: Xcode -> preferences -> key bindings 中的comment selection 是否设置上快捷键了 解决方法2:http://blog.csdn.net/jnbbwyth/article/details/52576169 第四个问题详解
2.真机测试不在支持ios8.0以下版本; (已解决)追加:xcode8支持ios8以下真机测试方法:1.应用程序-xcode 显示包内容-Contents-Developer-Platforms-iPhoneOS.platform-DeviceSupport 把里边 6.0 6.1 7.0 7.1 的文件夹粘贴到xcode8 对应的文件夹内 2. 应用程序-xcode 显示包内容-Contents-Developer-Platforms-iPhoneOS.platform-Developer-SDKs-iPhoneOS.sdk-SDKSettings.plist 文件下DefaultProperties - DEPLOYMENT_TARGET_SUGGESTE... 该数组中添加 6.0 6.1 7.0 7.1 对应的测试版本,(注意:如果你的文件是只读模式的,那么是不能修改的,你需要把Contents-Developer-Platforms-iPhoneOS.platform-Developer-SDKs-iPhoneOS.sdk-SDKSettings.plist 这些文件的只读模式都改成读写模式)这个版本排序一定要是从小到大,直接把小的添加到下面是不管用的,必须把小的拖到最上边.这个时候退出你的Xcode,然后重新启动,你就会发现ios8.0以下的真机 也可以正常测试了 非常感谢ID:84447879 的建议方法.分享给大家.
3.如果项目中包含证书,证书内包含的Id 必须与 bundle Id 保持一致才行,开发者team账号必须创建了 该 bundle Id 对应的证书,就是说不是所有的苹果账号都能真机测试了(这里说的是项目中有 证书的前提下)
4.使用Xcode 8创建新项目的时候,会让你选择开发者team为了自动生成对应的证书。在新老项目的General中也可以对签名进行设置,勾选自动管理证书(可选的),Xcode会自动替你生成调试证书和描述问题,证书与描述文件有效期为6天,避免了大量的垃圾冗余证书占用问题。
5.- (void)webView:(UIWebView *)webView didFailLoadWithError:(nullable NSError *)error; 变成了- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
6.版本target 从8.0 起步了,但是老代码的7.1 用xcode8 打开还是显示7.1 ,就是不知道起不起作用了.追加:可以手写输入7.1,仍然管用.
7.之前两个汉字占用24宽度,现在占用27了,导致部分UI可能需要重新适配; 或者判断下当前系统版本,如果>=10.0,就让需要适配的控件调用 sizetofit 方法.
8.麦克风权限:Privacy - Microphone Usage Description 是否允许此App使用你的麦克风?
相机权限: Privacy - Camera Usage Description 是否允许此App使用你的相机?
相册权限: Privacy - Photo Library Usage Description 是否允许此App访问你的媒体资料库?
通讯录权限: Privacy - Contacts Usage Description 是否允许此App访问你的通讯录?
蓝牙权限:Privacy - Bluetooth Peripheral Usage Description 是否许允此App使用蓝牙?
语音转文字权限:Privacy - Speech Recognition Usage Description 是否允许此App使用语音识别?
日历权限:Privacy - Calendars Usage Description 是否允许此App使用日历?
定位权限:Privacy - Location When In Use Usage Description 我们需要通过您的地理位置信息获取您周边的相关数据
定位权限: Privacy - Location Always Usage Description 我们需要通过您的地理位置信息获取您周边的相关数据
9.引用:45楼:Dcook -> MJRefresh iOS10的系统上每次下拉刷新后没办法完全恢复Normal 状态 Y轴距离上总是相差20左右...(楼主个人也使用的MJ,表示暂时没有发现这个问题)
解决方案 http://www.cnblogs.com/dev1024/p/5889865.html
10.引用:雨季的雾 ItunesConnect上传遇到问题,ERROR ITMS-90682: "Invalid Bundle. The asset catalog at 'Payload/ElitePlus.app/Assets.car' can't contain 16-bit or P3 assets if the app is targeting iOS releases earlier than iOS 9.3." 解决方法:http://www.cnblogs.com/zyonbao/p/5872943.html http://www.jianshu.com/p/b13e1e441116
11.iOS 10 因苹果健康导致闪退 crash 原文链接:http://www.jianshu.com/p/545bd1bf5a23
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'NSHealthUpdateUsageDescription must be set in the app's Info.plist in order to request write authorization.'
12.引用79楼:新增了CAAnimationDelegate ,之前使用CAAnimation的文件需要强制添加代理
好文章推荐1: http://blog.csdn.net/jnbbwyth/article/details/52576169 (内含:1.证书管理 2.xib注意事项 3.代码及Api注意 4.代码注释不能用的解决办法 5.权限以及相关设置 6.字体变大,原有frame需要适配 7.推送 8.屏蔽杂乱无章的bug)
好文章推荐2:转自 舞小月 http://www.cocoachina.com/bbs/read.php?tid-1695563.html
iOS10相册相机闪退bug
http://www.jianshu.com/p/5085430b029f
iOS 10 因苹果健康导致闪退 crash
http://www.jianshu.com/p/545bd1bf5a23
麦克风、多媒体、地图、通讯录
ios10相机等崩溃
http://www.jianshu.com/p/ec15dadd38f3
iOS10 配置须知
http://www.jianshu.com/p/65f21dc5c556
iOS开发 适配iOS10以及Xcode8
http://www.jianshu.com/p/9756992a35ca
iOS 10 的适配问题
http://www.jianshu.com/p/f8151d556930
问题汇总:(待解决)
1.引用36楼:状态栏隐藏失效了
- (BOOL)prefersStatusBarHidden{
return YES;
}
2.引用37楼:APP切到后台 然后从后台切回APP就闪退了 升级到IOS10各种莫名其妙的闪退怎么回事
3.引用44楼:xcode8使用source control 中git提交代码也有点不正常,远端存在一个master分支和一个dev分支,我这边本地有master dev 再多一个coder1的分支,当切换到coder1分支上无法拉取dev或者master上的代码,只有切换到master或者dev上才能拉取
4.引用27楼:nslog信息打印不全
5.引用50楼:请问ImagePickerController.cameraViewTransform这个属性在iOS10是不是不能用了?
6.引用57楼:app在iOS10上无法访问网络,打开app不弹出是否允许使用网络弹窗,在设置-无线局域网-使用无线局域网与蜂窝移动的应用里也无法看到该app,有些机子重启或者还原网络设置可以解决,这是系统BUG么?
7.引用35,64楼:Xcode8 + iOS8 进入断点很卡,何解?
持续更新中...
[ 此帖被wo709128079在2016-09-26 10:57重新编辑 ]
图片:屏幕快照 2016-09-20 上午11.10.23.png
相关推荐
This sample avoids the issues of implementing a storage class in order to demonstrate the protocol. A real implementation would likely do less work to provide values, such as directly copying object ...
This is a really small release that fixes a couple of issues that we shipped in Reveal 19. The first bug prevented our sample application, Soundstagram, from launching when Xcode 10.1 is selected as ...
using the latest release of Xcode (3.2.3) to verify that everything is in working order, and everything seems to compile and run as expected. However, Xcode is a moving target, and no description of ...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
- **Creating a New Project**: To create a new iOS project in Xcode, you need to choose a template (such as a single view application) and provide project details like the product name, organization ...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, much...
在本文中,我们将深入探讨Objective-C(OC)中的断点以及如何利用它们来有效地进行应用调试。...在实际工作中,结合Xcode的其他调试工具,如Instruments和Live Issues,可以更全面地解决问题,确保软件的稳定性和性能。
完整高清+书签版,全面支持 Xcode 9, Swift 4.0,由于上传...Case Studies: Quickly find and solve the real-world issues that iOS and macOS developers typically face in their day-to-day development workflow.
Creating 3D Assets: Get creative with the SceneKit editor and make your own 3D assets right inside Xcode. Face-based Apps: Find out what it takes to develop and ship Face-Based AR apps. And much, ...