iOS 13 适配
- UIViewController Present出来的样式修改
iOS 13默认的modalPresentationStyle是UIModalPresentationAutomatic,可能不符合我们的要求,改回之前的模式要用UIModalPresentationFullScreen.
新写一个UIViewController的Category,改变modalPresentationStyle的返回结果
1 | @implementation UIViewController(Category) |
- “NSGenericException” -reason: “Accress to UITextField’s _placeholderLabel ivar is prohibited.”
设置TextField的placeholder颜色在iOS 13 Crash,即下面的方法会崩溃
1 | [textField setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel.textColor"]; |
修改:
1 | #import <objc/runtime.h> |