2011-09-21 88 views
0

我必須將對象插入另一個類的數組。陣列的定義如下:從另一個類插入對象

在RecherchePartenaireTableView.m

self.arraytableview = [NSMutableArray array]; 

    //Add items 
    [arraytableview addObject: 
    [NSDictionary dictionaryWithObjectsAndKeys: 
     @"Type de Partenaire", @"mainTitleKey", 
     @"Tous", @"secondaryTitleKey", 
     nil]]; 
    [arraytableview addObject: 
    [NSDictionary dictionaryWithObjectsAndKeys: 
     @"Code postal", @"mainTitleKey", 
     @"515800", @"secondaryTitleKey", 
     nil]];... 

我嘗試這樣做:

* RecherchePartenaireTypedePArtenaireViewController.m

[self.recherchePartenaireTableView.arraytableview insertObject:cellText atIndex:1]; 

但nothi改變。我怎樣才能做到這一點?在此先感謝..

+0

請告訴我你的行爲所看到重裝的tableView? –

+0

顯示如何聲明屬性'arraytableview'?你爲什麼認爲從其他課程插入時沒有什麼變化? – jamapag

+0

在您的代碼片段中,您可以在陣列中添加NSDictionaries。什麼是cellText?可能是問題在那裏。如果你的數組是空的,你也不能插入對象atIndex 1。 –

回答

0

您是否嘗試過插入後重新加載您的tableView?

您可以通過這種方法

[self.tableView reloadData]; 
+0

是的,我把這個[self.recherchePartenaireTableView.tableviewrecherchepartenaire reloadData];我插入cellText後插入 – Gabrielle

相關問題