2011-01-22 60 views
0

警告:沒有 '-eventListArray' 的方法發現預警的NSMutableArray

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 

    return [[[popularListArray objectAtIndex:section]eventListArray]count]; 

} 

@Thanks提前

+0

] eventListArray]計數]似乎你混淆與「[]」 – 0xDE4E15B 2011-01-22 08:41:24

+2

你導入聲明eventListArray頭文件? – Eiko 2011-01-22 09:56:34

回答

3

你的問題是最有可能的是你需要#import其中-eventListArray方法被聲明的頭文件。

文件編譯一次一個,所以如果你不導入頭,編譯器將不知道該方法編制該文件時,因此會發出警告。

0

如果你想保持沉默的編譯器你:(沒有匹配方法簽名

警告消息要投你通過popularListArray檢索對象,因爲objectAtIndex返回(ID),這是一個(*無效)等同。