Open jayrparro opened 10 years ago
Found the same. It crashes due to recursion. If you test for (contentView.frame.origin.x != 0) and return, then the recursion is broken, but the size of the cells are wrong. I have not debugged it more than that.
Hi,
change UI elements in main queue:
dispatch_async(dispatch_get_main_queue(), ^{
contentView.frame = rect;
});
Greetz Nils
Had the same problem. Thx to ndressel it is fixed now. App doesn't crash anymore but when using PrettyCell CPU usage is about 100%. Any ideas?
Xcode 6, iOS 8, using PrettyTableViewCell and the app is crashing related to KVO on line 481 - any idea?