前言
看着网络上铺天盖地的iOS11的消息,作为一枚iOS从业者谁又会无动于衷呢!带着这份好奇,升级了macOS到10.12.4(Xcode9需10.12.4及以上系统),下载安装了Xcode9.0 Beta。
Xcode9.0 Beta.png单从这几天体验来讲,Xcode9不愧为一篇佳作,代码预览、编译速度等都有较大提升,最让人眼前一亮的莫过于Xcode9将版本管理系统独立出来了一个模块,在同一局域网下支持无线部署调试。说真心话,如果不是怕上线项目出问题,真心不想切到Xcode8来开发。
版本库管理.pngXcode9下相册等访问权限问题
之前项目中相机功能一直使用系统自带的PickerView,说实话不甚美观,自己空闲之余一直着手开发自定义相机(EVNCamera:给个StarO(∩_∩)O~)。在Xcode9的首个Beta版本中开发相机功能时发现,原有项目竟然crash,
后来发现iOS11下,苹果对相册的权限key做了调整,原来
如果将图片保存到系统相册,iOS11之后,新增NSPhotoLibraryAddUsageDescription(Xcode9以下打包APP不需要考虑这些),需要在自己的plist文件中添加这个权限配置。
详见:Cocoa Keys
近场通讯NFC权限
在iOS11中,苹果开放了NFC(Near field communication),怕也是其推广ApplePay的一种策略。
在使用近场通讯时,首先也要在info.plist配置NFCReaderUsageDescription 权限,案例步骤,如下:
导航栏TitileView的宽度设置
在导航titleView使用SearchBar宽度适配问题?
如果您在Navigation上的titleView上添加searchBar,iOS11情况下可能有问题,如下图所示:
iOS11之前.png iOS11.png
Xcode8及以下iOS版本判断
// iOS版本 > 11.0
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion){.majorVersion = 11, .minorVersion = 0, .patchVersion = 0}])
Xcode9及以后
if (@available(iOS 11.0, *))
方案一:iOS 11 SearchBar in NavigationBar
方案二:
重设titleView的约束
#import <UIKit/UIKit.h>
@interface EVNUILayoutView : UIView
- (instancetype)initWithFrame:(CGRect)frame;
@end
#import "EVNUILayoutView.h"
@implementation EVNUILayoutView
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self)
{
}
return self;
}
/**
* 撑开view的布局
@return CGSize
*/
- (CGSize)intrinsicContentSize
{
return UILayoutFittingExpandedSize;
}
@end
// 有朋友讲,事件触发有问题,此处要感谢范孟童鞋
#define XCODE9VERSION // MARK - Xcode9 标记, Xcode8打包记得注释
// 重设约束
- (void)resetSearchBar
{
#ifdef XCODE9VERSION
// iOS版本 > 11.0
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion){.majorVersion = 11, .minorVersion = 0, .patchVersion = 0}])// 等同于if (@available(iOS 11.0, *))
{
self.navigationItem.titleView = self.searchBar; // 顶部导航搜索
}
else
{
#else
#endif
CGFloat leftButtonWidth = 35, rightButtonWidth = 75; // left padding right padding
EVNUILayoutView *container = [[EVNUILayoutView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width - leftButtonWidth - rightButtonWidth, 44)];
self.searchBar.translatesAutoresizingMaskIntoConstraints = NO;
[container addSubview:self.searchBar];
CGFloat offset = (rightButtonWidth - leftButtonWidth) / 2;
[NSLayoutConstraint activateConstraints:@[
[self.searchBar.topAnchor constraintEqualToAnchor:container.topAnchor], // 顶部约束
[self.searchBar.leftAnchor constraintEqualToAnchor:container.leftAnchor constant:-25*ScreenScaleX], // 左边距约束
[self.searchBar.rightAnchor constraintEqualToAnchor:container.rightAnchor constant:0], // 右边距约束
[self.searchBar.bottomAnchor constraintEqualToAnchor:container.bottomAnchor], // 底部约束
[self.searchBar.centerXAnchor constraintEqualToAnchor:container.centerXAnchor constant:-offset], // 横向中心约束
]];
self.navigationItem.titleView = container; // 顶部导航搜索
#ifdef XCODE9VERSION
}
#else
#endif
}
✨✨:如果使用Xcode9打包的先暂时使用自定义的searchBar吧,可以参考鄙人的Demo:EVNCustomSearchBar,适配iPhoneX已适配
EVNCustomSearchBar.gif EVNCustomSearchBar.gifScrollView相关控件偏移问题
ScrollView相关控件,比如tableview、webView、collectionView等控件顶部会有一定距离的偏移。
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion){.majorVersion = 11, .minorVersion = 0, .patchVersion = 0}])// 等同于if (@available(iOS 11.0, *))
{
self.hostWebView.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
else
{
self.automaticallyAdjustsScrollViewInsets = NO;
}
UIToolbar事件触发问题
https://stackoverflow.com/questions/46107640/ios11-uitoolbar-contentview
IQKeyBoardManager 状态栏透明问题
在对应的ViewController里加入:
// MARK: 键盘导致状态栏异常
- (void)loadView
{
UIScrollView * safeScrollerView = [[UIScrollView alloc] initWithFrame:[UIScreen mainScreen].bounds];
safeScrollerView = Safe Area's size;
self.view = safeScrollerView;
}
iPhone X状态栏和底部功能区
iPhone X由于状态栏高度的变化,对于状态栏高度预设值的视图需要,动态获取,由于新增底部功能区域,需要对视图高度进行适配,确保主要APP点触功能在安全区(自状态栏至底部功能区)。
如果使用如下高度或视图控件,请注意:
1、原状态栏StatusBar 20pt的高度,iPhone X为44pt;
2、顶部导航高度+状态高度 64pt的高度,iPhone X为88pt的高度;
3、底部tabbar 49pt,iPhoneX多了一个底部功能区,有34pt的高度;
网上很多例子,这里不做过多赘述,官方适配文档:为 iPhone X 更新您的 app。
其余注意事项暂未发现,大家如有其它的发现,还请在留言区提醒,谢谢,待续......
无线部署调试
从Xcode9支持无线部署调试来看,千呼万唤的iPhone8支持无线充电几乎是必然。
下面简单梳理下无线调试的步骤:
1、第一次部署调试还是需要连线,连接好之后,选择Window->Devices and Simulators,或者直接快捷键shift+command+2;
2、保证mac与手机在同一个局域网下,在弹出的界面中,勾选connect via network;
勾选connect via network.png
3、勾选好后,耐心等待......
连接成功.png
4、当出现上图中的小球时,说明你的iPhone与Xcode匹配成功,此时,拔掉数据线即可。
DingTalk20170616195309.png
5、直接运行项目测试。
本文已在版权印备案,如需转载请在版权印获取授权。
获取版权
网友评论
/** 视图完全显示 */
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
// 弹出键盘
[self.searchBar becomeFirstResponder];
}
Passcode Required
The device must have a passcode set in order to allow this operation (0xE8003FFE).
- (void)resetSearchBar
{
CGFloat leftButtonWidth = 35, rightButtonWidth = 75; // left padding right padding
SearchView *container = [[SearchView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width - leftButtonWidth - rightButtonWidth, 44)];
_searchController.searchBar.translatesAutoresizingMaskIntoConstraints = NO;
[container addSubview:_searchController.searchBar];
CGFloat offset = (rightButtonWidth - leftButtonWidth) / 2;
// 给searchBar添加约束
[NSLayoutConstraint activateConstraints:@[
[_searchController.searchBar.topAnchor constraintEqualToAnchor:container.topAnchor], // 顶部约束
[_searchController.searchBar.leftAnchor constraintEqualToAnchor:container.leftAnchor constant: -25 * ScalW], // 左边距约束
[_searchController.searchBar.rightAnchor constraintEqualToAnchor:container.rightAnchor constant:0], // 右边距约束
[_searchController.searchBar.bottomAnchor constraintEqualToAnchor:container.bottomAnchor], // 底部约束
[_searchController.searchBar.centerXAnchor constraintEqualToAnchor:container.centerXAnchor constant: -offset], // 横向中心约束
[_searchController.searchBar.heightAnchor constraintEqualToConstant:44.0],
// [_searchController.searchBar.widthAnchor constraintEqualToAnchor:container.widthAnchor constant:KWidth] // 宽度约束
]];
self.navigationItem.titleView = container; // 顶部导航搜索
}
参照你的写的,有两个问题1.searchbar盖满了整个导航栏2.前两次触发搜索都会出现searchbar下沉的情况
Xcode9.0
iOS 11环境下编译,出错:
No architectures to compile for (ARCHS=x86_64,valid_archs=i386)