forked from mirrors/linphone-iphone
Fix index of sipAddress sipPhones sipEmails
This commit is contained in:
parent
fed56fca51
commit
34e12d208f
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,7 @@
|
|||
UIContactDetailsCell *cell = (UIContactDetailsCell *)view;
|
||||
// we cannot use indexPathForCell method here because if the cell is not visible anymore,
|
||||
// it will return nil..
|
||||
NSIndexPath *path = cell.indexPath; // [self.tableView indexPathForCell:cell];
|
||||
NSIndexPath *path = [self.tableView indexPathForCell:cell]; // [self.tableView indexPathForCell:cell];
|
||||
ContactSections sect = (ContactSections)[path section];
|
||||
NSString *value = [textField text];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue