iOS13Cell箭头

UITableView 种Cell出现带方框的小箭头

920 发布: 2020/6/13 01:20 本文总阅读量

iOS 13 cell 箭头适配

iOS13适配 UITableView 种Cell出现带方框的小箭头

项目1

出现这个的原因是有个类扩展的方法名和系统方法名重名了(如下),将扩展的方法名更改为其他名称即可

- (UIImage *)imageWithTintColor:(UIColor *)tintColor;

项目