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改變。我怎樣才能做到這一點?在此先感謝..
請告訴我你的行爲所看到重裝的tableView? –
顯示如何聲明屬性'arraytableview'?你爲什麼認爲從其他課程插入時沒有什麼變化? – jamapag
在您的代碼片段中,您可以在陣列中添加NSDictionaries。什麼是cellText?可能是問題在那裏。如果你的數組是空的,你也不能插入對象atIndex 1。 –