I used Interface Builder to set custom row height to 88.0, but when app runs its height bigger for 10.0 more.
I tried to use
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
but it produces an error sometimes
CALayerInvalidGeometry', reason: 'CALayer bounds contains NaN:...
Problem was with an UIImageView in my cell, that I forget to nil when it doesn’t exist.
Also, row height values should be equal both in .m file and storyboard.