Xcode各类问题汇总

1.xcode批量替换

http://www.jianshu.com/p/9442042a532c

2.xcode 11坑的地方

1.使用以下代码会崩溃
// if let statusBar = UIApplication.shared.value(forKey: "statusBar") as? UIView{
// statusBar.backgroundColor = UIColor.clear
// }

2.textfiled leftView 设置imageView 会变的很大
解决办法:
使用 uiview 做为leftView 将imageView添加在UIView上

3.Xcode11.3之后,在iOS13中运行代码发现presentViewController和之前弹出的样式不一样。
解决办法:
会出现这种情况是主要是因为我们之前对UIViewController里面的一个属性,即modalPresentationStyle(该属性是控制器在模态视图时将要使用的样式)没有设置需要的类型。在iOS13中modalPresentationStyle的默认改为UIModalPresentationAutomatic,而在之前默认是UIModalPresentationFullScreen。

你可能感兴趣的:(Xcode各类问题汇总)