iOS13中presentViewController的问题
更新了Xcode11.0 beta之后,在iOS13中运行代码发现presentViewController@H_403_4@和之前弹出的样式不一样。
会出现这种情况是主要是因为我们之前对UIViewController@H_403_4@里面的一个属性,即
modalPresentationStyle@H_403_4@(该属性是控制器在模态视图时将要使用的样式)没有设置需要的类型。在iOS13中
modalPresentationStyle@H_403_4@的默认改为
UIModalPresentationAutomatic@H_403_4@,而在之前默认是
UIModalPresentationFullScreen@H_403_4@。
/* Defines the presentation style that will be used for this view controller when it is presented modally. Set this property on the view controller to be presented,not the presenter. If this property has been set to UIModalPresentationAutomatic,reading it will always return a concrete presentation style. By default UIViewController resolves UIModalPresentationAutomatic to UIModalPresentationPageSheet,but other system-provided view controllers may resolve UIModalPresentationAutomatic to other concrete presentation styles. Defaults to UIModalPresentationAutomatic on iOS starting in iOS 13.0,and UIModalPresentationFullScreen on prevIoUs versions. Defaults to UIModalPresentationFullScreen on all other platforms. */ @property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
要改会原来模态视图样式,我们只需要把UIModalPresentationStyle@H_403_4@设置为
UIModalPresentationFullScreen@H_403_4@即可。
ViewController *vc = [[ViewController alloc] init]; vc.title = @"presentVC"; UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc]; nav.modalPresentationStyle = UIModalPresentationFullScreen; [self.window.rootViewController presentViewController:nav animated:YES completion:nil];
私有KVC
在使用iOS 13运行项目时突然APP就crash@H_403_4@掉了。定位到的问题是在设置
UITextField@H_403_4@的
Placeholder@H_403_4@也就是占位文本的颜色和字体时使用了KVC的方法:
[_textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; [_textField setValue:[UIFont systemFontOfSize:14] forKeyPath:@"_placeholderLabel.font"];
可以将其替换为
_textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"姓名" attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:14],NSForegroundColorAttributeName:[UIColor redColor]}];
并且只需要在初始化的时候设置attributedPlaceholder@H_403_4@即富文本的占位文本,再重新赋值依然使用
placeolder@H_403_4@直接设置文本内容,样式不会改变。(想要这种效果的话需要在初始化attributedPlaceholder时的字符串不为空)
Universal Link(通用链接)
在Xcode11中配置Universal Link(通用链接)步骤:
在iOS13之前在其他APP去safari中打开Universal Link@H_403_4@(通用链接)系统匹配域名是全匹配,而在iOS13之后规则发生了变化,猜测是包含关系。比如在iOS13之前,如果
Universal Link@H_403_4@(通用链接)为
w.mydomain.com@H_403_4@那么在微信或者其他APP访问
www.mydomain.com@H_403_4@然后点击去safari打开则不会拉起相应APP,而在iOS13则会拉起相应APP。
而在safari中输入的链接则依然和iOS之前一样,只有www.mydomain.com@H_403_4@才会提示打开相应APP。
- 在Xcode创建项目时默认的
project.pbxproj@H_403_4@中的所有
PRODUCT_NAME = "$(TARGET_NAME)"@H_403_4@;。
- 在Xcode11.0之前如果修改
DisplayName@H_403_4@时只是修改
info.plist@H_403_4@中的
Bundle display name@H_403_4@值,但是在Xcode11.0中修改该值则会把
project.pbxproj@H_403_4@中的一个
PRODUCT_NAME@H_403_4@改为修改后值,如果在项目中通过
[NSBundle mainBundle] infoDictionary]@H_403_4@取
kcfBundleExecutableKey@H_403_4@的就会有影响,并且对
Build Settings@H_403_4@中的
Packaing@H_403_4@中的一些名称有影响,可能还会有其他影响有待关注。