CEWendel / SWTableViewCell

An easy-to-use UITableViewCell subclass that implements a swippable content view which exposes utility buttons (similar to iOS 7 Mail Application)
MIT License
7.14k stars 1.27k forks source link

iOS14侧滑不生效 #433

Closed lsq286224380 closed 3 years ago

lsq286224380 commented 3 years ago

iOS14侧滑不生效

ChangJian2333 commented 3 years ago

[self.contentView superview];// iOS14 加入这行代码可解决此问题 if (![NSStringFromClass([[self.subviews objectAtIndex:0] class]) isEqualToString:kTableViewCellContentView]) { // iOS 7 contentViewParent = [self.subviews objectAtIndex:0]; clipViewParent = self; }