ios专题

xcode9 新特性

2017-09-24  本文已影响18人  HeavenWong
2017-9-20凌晨苹果发布iOS 11和Xcode9, 迫不及待更新了(等了两个小时), 趁有时间研究一波, 一开始还挺蛋疼的

一、分支切换

分支位置

二、 无线调试,但是经常连接失败

Devices and Simulators 勾选Connect via network bug就是经常连接失败 新特性

三、为了iphone x,xib界面增加新控件

70B1E9F2-902A-4308-8E37-18545504EF90.png

四、tableview的代理方法设置组的头部高度尾部高度,失效

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section

解决方法:先设置属性_tableView.sectionFooterHeight,_tableView.sectionHeaderHeight,才会来到代理方法

_tableView.sectionFooterHeight = kSectionFooterHeight;
    _tableView.sectionHeaderHeight = kSectionHeaderHeight;

五、系统相册访问权限问题,相机必须要链接真机

连接模拟器报错camera ios11增加Key权限 NFC新增权限

六、多个模拟器共存

CAD607E4-DEE5-492C-8BA3-5145E80A2BBE.png 48DE7BB3-EC58-426E-9FA3-0FDE059A55C8.png

七、定位相关 问题




以下是xcode9 打包上线的新特性 :

一 . 新增App Store Icon , 1024 x 1024, 一倍像素, 格式是png.
WARNING ITMS-90704: "Missing App Store Icon. iOS Apps must include a 1024x1024px App Store Icon in PNG format. Without providing the icon in the Asset Catalog or via iTunes Connect, apps cannot be submitted for App Review or Beta App Review. Refer to https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/ for more information."
警告 上传包成功后收到的邮件警告 1024x1024.png
上一篇 下一篇

猜你喜欢

热点阅读