Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions SWTableViewCell/PodFiles/SWTableViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ - (void)initializer
// Add the cell scroll view to the cell
UIView *contentViewParent = self;
UIView *clipViewParent = self.cellScrollView;

[self.contentView superview];

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 이슈가 iOS 14에서만 발생되는 문제인지 Xcode 12 전환으로 인한 문제인지 확인해주세요.
iOS 14자체의 문제라면 조건문을 추가해야 할것 같아요.

그리고 잘 이해는 안가는 코드라 주석도 추가해주시면 좋을 것 같습니다.


if (![NSStringFromClass([[self.subviews objectAtIndex:0] class]) isEqualToString:kTableViewCellContentView])
{
// iOS 7
Expand Down