UITableViewCell *clickedCell = (UITableViewCell *)[[sender superview] superview];
NSIndexPath *indexPath = [tblMyCard indexPathForCell:clickedCell];
int section = indexPath.section;
int row = indexPath.row;
// code for load particular cell in table
NSArray *indexPathArray = [[NSArray alloc] initWithObjects:indexPath, nil];
[tableView reloadRowsAtIndexPaths:indexPathArray withRowAnimation:UITableViewRowAnimationFade];
NSIndexPath *indexPath = [tblMyCard indexPathForCell:clickedCell];
int section = indexPath.section;
int row = indexPath.row;
// code for load particular cell in table
NSArray *indexPathArray = [[NSArray alloc] initWithObjects:indexPath, nil];
[tableView reloadRowsAtIndexPaths:indexPathArray withRowAnimation:UITableViewRowAnimationFade];
No comments:
Post a Comment