iOS14 适配:【KVC 不允许访问 UIPageControl的pageImage】解决方案: 自定义PageContro

前言

同 iOS 13 更新时的 textField 的 placeHolder 属性一样,iOS 14 更新后,禁止开发者用 KVC 的方式访问 UIPageControl 的 私有属性 pageImage。

I、KVC 不允许访问 UIPageControl的pageImage

UIKIT_EXTERN API_AVAILABLE(ios(2.0)) @interface UIPageControl : UIControl 

@property(nonatomic) NSInteger numberOfPages;          // default is 0
@property

你可能感兴趣的:(iOS开发基础)