2014-10-30 51 views
0

我想剛剛拿到ParseStore例如運行起來,我按照所有的步驟上解析商店教程錯誤

https://github.com/ParsePlatform/ParseStore

但每當我嘗試安裝一切(步驟3後,運行應用程序讓您的應用程序啓動並運行)應用程序失敗,說'在類型爲'PFProductViewController'的對象上找不到'Property className'。下面是給我的錯誤代碼:

- (id)initWithStyle:(UITableViewStyle)style { 
    if (self = [super initWithStyle:UITableViewStylePlain]) { 
     self.className = @"Item"; 
     [self.tableView registerClass:[PFProductTableViewCell class] forCellReuseIdentifier:@"ParseProduct"]; 
     self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; 
    } 
    return self; 
} 

在此先感謝您的幫助!

回答

0

你提到的樣品項目在2歲左右,看起來過時(顯然)。該物業現在應該是parseClassName,而不是className