[SOLVED] UICollectionViewCell size for 3 items per row

Issue I’m trying to create a UICollectionView with 3 images per row. For the start i used this code: – (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath { return CGSizeMake(110, 110); } And it’s looking good but it only fits the iPhone

Continue reading

[SOLVED] UITableView row insertion crash

Issue I’m trying to add Row/cell in to tableview, but before [Table endUpdates]; … app crashes with error : * Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit/UIKit-2372/UITableView.m:909 * Terminating app due to uncaught exception ‘NSInternalInconsistencyException’, reason: ‘attempt to insert row 33

Continue reading