I am trying to take contacts from my addressbook. I am displaying the data on my tableview. For that first I am setting the height of the tableviewcell.
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
and after that I implement
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
I write the conditions and logic inside these delegate methods. But I am facing a problem where, the value of index path in both the methods are different. Due to this, while I am looping through the addressbook(inside these methods), both the delegate methods are being executed in a different order. Why is that the index path has different values in both cases