我有以下代碼:錯誤:從一個NSMutableArray獲取的對象 - 目標C
Product product = [[Product alloc] init];
product.title = tag;
[allProducts addObject:product];
NSString *pImage = [[NSString alloc] initWithFormat:p.title];
但它未能返回任何
誰能好心幫我好嗎? THanks
我有以下代碼:錯誤:從一個NSMutableArray獲取的對象 - 目標C
Product product = [[Product alloc] init];
product.title = tag;
[allProducts addObject:product];
NSString *pImage = [[NSString alloc] initWithFormat:p.title];
但它未能返回任何
誰能好心幫我好嗎? THanks
代碼中沒有任何內容試圖從集合中檢索任何東西。
[allProducts addObject:product];
上述行用於添加對象。如果你正在尋找檢索對象你這樣做:
Product* product = [allProducts objectAtIndex:0];
看看在NSArray和NSMutableArray裏的文檔。
--update--
只注意到你在你的代碼中的錯誤:
Product* product = [[Product alloc] init];
(你離開了*)
,你剛剛添加了一個']':) – Toastor 2010-09-24 16:21:20
@Toastor - OOOOOOOOOOOOOOPS :) – willcodejavaforfood 2010-09-24 16:27:28
應該是產品*產品= [[產品頁頭] 在裏面]; – willcodejavaforfood 2010-09-24 15:45:05