Enregistrer nom de plume pour tableView

static NSString *cellIdentifier = @"cell";
if (tableView ==tableview1) 
{
    ContactCustom *cell1=(ContactCustom *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];        
    if (cell1 == nil) 
    {
        [[NSBundle mainBundle] loadNibNamed:@"ContactCustom" owner:self options:nil];
        cell1 = contactCustom;
    }
}

Comment enregistrer un nom de plume dans viewDidLoad méthode avant d'appeler cellForRowAtIndex méthode?

OriginalL'auteur user2134883 | 2013-03-12