I have seen this being asked here many times but none of the solutions worked for me. Here is my code snippet:
- (UITableViewCell *)tableView:(UITableView *)
This behavior in TableView had got me head banging literally. Turns out I had used
@property (weak, nonatomic) NSMutableArray *itemsArray;
instead of
@property (strong, nonatomic) NSMutableArray *itemsArray;
Hope this information helps.