-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS 15.0 Crash #437
Comments
// if (![NSStringFromClass([[self.subviews objectAtIndex:0] class]) isEqualToString:kTableViewCellContentView]) |
@OCer Thank you for your answer. The thread you shared was for iOS 14 crash. but I am facing the crash on iOS 15 beta and iOS 15.0. Note: I am not facing that previous issue of ""![NSStringFromClass([[self.subviews objectAtIndex:0] class]) isEqualToString:kTableViewCellContentView] is out of range"" please suggest some answer for my case . Thanks |
Hi I am facing the same problem , In iOS 15 it is crashing on layoutSubviews method at SWTableViewCell.m, Pls update if it is fixed. |
I was facing the same problem, too. OCer's recommendation, to comment out that block in SWTableViewCell.m:94-99 resolved it for me. Thanks @OCer ! |
Facing the same issue in iOS15, in iOS14 it was running very smoothly but in iOS15 it crashes every time when tableview reloaded. |
Hi. I was facing the same issue as well. @OCer suggestions works perfect for me. |
Hi @TomerPicker , this may not be "best practice", but because this situation is not altogether uncommon, I actually don't use pods in my projects. Rather, I check out the 3rd party library source code and include that code in my own project (and hence its own repo), so I can make changes and not worry about them getting clobbered accidentally. The "proper" way to handle this kind of thing, however, would be for the fix to be merged into the project (SWTableViewCell) and a new version produced and thus enjoyed by all. |
iOS 15.0 make a crash on
"[super layoutSubviews]", when calling tableView.reloadData() or view.layoutIfNeeded()
methid: - (void)layoutSubviews
File : SWTableViewCell.m
The text was updated successfully, but these errors were encountered: