我正在尝试启动并运行ParseStore示例,我按照
上的所有步骤操作https://github.com/ParsePlatform/ParseStore
但是每当我在安装完所有内容后尝试运行应用程序(启动并运行应用程序的第3步)时,应用程序都会失败,说'在'PFProductViewController'类型的对象上找不到属性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 :(得分:0)
您提到的示例项目大约2岁,看起来过时(显然)。该属性现在应为parseClassName
,而不是className