我有一個NSMutableArray存儲其他數組的列表。當我運行代碼。拉NSArray從NSMutableArray
NSLog(@"%@",[[appDelegate teamRoster]objectAtIndex:[indexPath.row]class])
它返回,並且告訴我,我在看一個數組,
然而,當我嘗試做以下
[selectedRowerView tempArray] = [[appDelegate teamRoster]objectAtIndex:[indexPath.row]];
程序中的錯誤了。任何人有任何想法,爲什麼這可能會發生?
您正在尋找'='賦值運算符錯誤一側的問題。 ;)看到我的答案。 – Regexident