我有两个 Xcode 不喜欢的 UITableViewCell 自定义子类。我正在尝试调用 registerClass:forReuseIdentifier: 方法,如下所示:
static NSString* gameCellIdentifier = @"GameCell";
static NSString* buttonCellIdentifier = @"ButtonCell";
// Register the classes for use.
[self.tableView registerClass:ButtonCell forCellReuseIdentifier:buttonCellIdentifier];
[self.tableView registerClass:GameCell forCellReuseIdentifier:gameCellIdentifier];
而且我收到错误消息“意外的接口名称......而是预期的表达式。” 错误。有任何想法吗?