ios13适配(UIKit)

1.UITableViewCell点击高亮的问题

由于UITableViewCell的contentView中的子视图的backgroundColor不为nil,导致点击Cell时子视图的高亮效果是没有的,苹果ios13.0适配文档给的方案是:

一:最简单的方式就是把子视图的backgroundColor置为nil,或者把backgroundColor设置为[UIColor clearColor],但是这种方式有一点不好,因为把backgroundColor设置为透明颜色或nil,就会导致图层的显示状态为混合渲染模式,这种方式会导致快速滑动tableView时会掉帧,感到卡顿问题,这种方式不推荐使用

二: 苹果官方文档还给了第二种适配方式,就是使用- (void)setHighlighted:(BOOL)highlightedanimated:(BOOL)animated或者- (void)setSelected:(BOOL)selectedanimated:(BOOL)animated方法进行设置,非常推荐用这种方式来适配ios13 点击Cell时子视图高亮效果没有的问题

思路是为UITableViewCell增加一个扩展方法,我们采用Category的方式来实现

代码如下:

#import

NS_ASSUME_NONNULL_BEGIN

@interfaceUITableViewCell(HighlightColor)

@property (nonatomic, strong) NSMutableDictionary *dicColor;

- (void)setCellHighlighted:(BOOL)highlighted;

@end

#import "UITableViewCell+HighlightColor.h"

@implementationUITableViewCell(HighlightColor)

@dynamic dicColor;

- (void)setCellHighlighted:(BOOL)highlighted{

    [self setSubViewBgColorWith:self.contentView highlighted:highlighted];

}

- (void)setSubViewBgColorWith:(UIView *)view highlighted:(BOOL)highlighted{

    for(UIView*subViewinview.subviews) {

       if([subViewisKindOfClass:[UIViewclass]]) {

           if(!self.dicColor) {

               self.dicColor= [NSMutableDictionarydictionary];

           }

               if(highlighted) {

                   subView.backgroundColor=nil;

               }else{

                   if(subView.backgroundColor!=nil) {

                       [self.dicColor setValue:subView.backgroundColor forKey:@(subView.hash).stringValue];

                   }

                   subView.backgroundColor= [self.dicColor objectForKey:@(subView.hash).stringValue];

               }


           if(subView.subviews) {

               [self setSubViewBgColorWith:subView highlighted:highlighted];

           }

       }

    }

}

- (NSMutableDictionary *)dicColor{

    return objc_getAssociatedObject(self, @"dicColor");

}

- (void)setDicColor:(NSMutableDictionary *)dicColor{

     objc_setAssociatedObject(self, @"dicColor", dicColor, OBJC_ASSOCIATION_RETAIN);

}

2.更改textField的placeholderLabel的字体颜色以及大小不能通过kvc的方式去做,这样做在iOS13的设备上会导致App崩溃,更改textField的placeHolderLabel的字体颜色与大小我们应该用textField的attributedPlaceholder的属性进行设置

示例代码如下:

 UITextField *textField = [UITextField new];

textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"placeholder" attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:14],NSForegroundColorAttributeName:[UIColor redColor]}];

3.系统的模态方法presentViewController,在iOS13.0模态出来的控制器的效果如图所示:


ios13适配(UIKit)_第1张图片


会看到在iOS13模态出来的控制器与上一页的控制器之间往下移动了,并且两个控制器之间有transform的效果,而且模态出来的控制器还可以下拉返回到上一页面,产生的原因是在ios13模态控制器的时候控制器的modalPresentationStyle默认为UIModalPresentationAutomatic,而在ios13之前模态控制器的modalPresentationStyle默认为UIModalPresentationFullScreen,如果想让模态效果和ios13以前的模态效果一样,可以设置modalPresentationStyle为UIModalPresentationFullScreen

3.适配iOS13 下的深色模式

如果需要适配ios13下的深色模式需要更改每个页面的控件的颜色成本较高,所以我推荐在app中强制使用浅色模式即可,代码如下:

 if(@available(iOS13.0, *)) {

        self.window.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;

    }

如果想看更多关于ios13的适配问题请访问该地址:

https://mp.weixin.qq.com/s/Mtvl-Dd0RHwzdM5vL0moAA

你可能感兴趣的:(ios13适配(UIKit))