汇总下遇到的beta版本的问题吧,先说自己现在遇到的吧,方便大家跳坑。
1,私有KVC
[textField setValue:[UIColor grayColor] forKeyPath:@"_placeholderLabel.textColor"];
更新为:textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"PlaceholderStr"attributes:@{NSForegroundColorAttributeName: [UIColor grayColor]}];
2,项目启动15s后crash,+[_LSDefaults sharedInstance]报错问题
我发现注释友盟统计项目会正常运行,目前没找到原因,有解决版本会更新
[HYBUMAnalyticsHelper UMAnalyticStart];//TODO:配置友盟统计
3,SearchBar黑线处理crash
之前为了处理搜索框的黑线问题会遍历后删除UISearchBarBackground,在iOS13会导致UI渲染失败crash;解决办法是设置UISearchBarBackground的layer.contents为nil