Как мне получить значение идентификатора в целое число. Смотрите ниже:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSMutableDictionary *curRow = [myData objectAtIndex:indexPath.row];
NSLog(@"Cell Click %@ %@ - %@",[curRow objectForKey:@"Name"], [curRow objectForKey:@"ID"], [curRow objectForKey:@"DOB"]);
UserID= [curRow [objectForKey:@"ID" intValue] ; <<<< This doesnt work?