iOS13上的一些小问题集锦。
1、UITextField
在iOS13上,如果TextField不设置textColor的话,在黑暗模式下,字体可能会显示不出来。
表现为用户在输入的时候发现输入不上内容,实际上内容已经输入了,只是在黑暗模式下没有显示出来而已。
所以textField记得设置textColor。另外其他的内容控件,最好也注意一下这个问题。
2、UIAlertView
iOS 13添加了新的创建Window的方式,如果使用UIScene这种创建的项目的话,再去使用UIAlertView,会直接闪退。
2020-05-08 08:50:25.220425+0800 Test-1[8009:5064623] *** Terminating app due to uncaught exception 'NSObjectNotAvailableException', reason: 'UIAlertView is deprecated and unavailable for UIScene based applications, please use UIAlertController!'
UIAlertView早应该被废弃了,如果还有人在用的话…