tigerAndBull / TABAnimated

A skeleton screen loading framework based on native for iOS. (一个由iOS原生组件映射出骨架屏的框架,包含快速植入,低耦合,兼容复杂视图等特点,提供国内主流骨架屏动画的加载方案,同时支持上拉加载更多、自定制动画。)
MIT License
3.37k stars 536 forks source link

关于深色主题app闪白问题 #208

Closed dq3398509 closed 1 year ago

dq3398509 commented 2 years ago

https://www.jianshu.com/p/06166f128483

在appdelegate中添加这段代码
if (@available(iOS 14.0, *)) {
    UIBackgroundConfiguration *bgconfig = [UIBackgroundConfiguration listPlainCellConfiguration];
    bgconfig.backgroundColor = UIColor.clearColor;
    [UITableViewCell appearance].backgroundConfiguration = bgconfig;
}
tigerAndBull commented 1 year ago

已沟通,使用clearColor解决