1、UIPageControl
UIPageControl的subview不是UIImageView,不能通过改变imageview的样式来改自定义的圆点,要通过改preferredIndicatorImage(新的api,iOS14)
2、UILabel
UILabel 只设置adjustsFontSizeToFitWidth,压缩文字不到位,会出现... , 需要额外设置minimumScaleFactor
3、模拟器
- VALID_ARCHS没有默认支持x86_64 需要手动额外设置
- 模拟器跑NFC功能的项目,缺少libnfshared.dylib的动态库,路径是Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib
4、UITableViewCell
UITableViewCell里面的子视图要添加在contentView上,要不会被contentview遮挡住,按钮就无法点击。
5、IDFA
IDFA默认关闭,需向用户申请,在info.plist文件里添加隐私描述。
PS:以上为实际项目遇到,欢迎补充