gpt4 book ai didi

uitableview - iOS 11/Xcode 9 : UITableViewCell white background flickers on delete

转载 作者:行者123 更新时间:2023-12-04 01:20:58 25 4
gpt4 key购买 nike

在 iOS 11 设备上删除 UITableViewCell 时由于某种原因出现意外的白色背景,但是 Storyboard中的所有背景颜色都设置为蓝色(在 iOS10 上工作正常)。

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
[self.bookmarks removeObjectAtIndex:indexPath.row];
[self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
}
尝试了所有类型的 UITableViewRowAnimation ,不能解决问题。
enter image description here

最佳答案

试试吧(你可以选择 appearanceWhenContainedInInstancesOfClasses 代替)。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

...

[[UITableViewCell appearance] setBackgroundColor:[UIColor clearColor]];

return YES;
}

关于uitableview - iOS 11/Xcode 9 : UITableViewCell white background flickers on delete,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46477291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com