Xcode が気に入らない UITableViewCell の 2 つのカスタム サブクラスがあります。次のように 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];
そして、「予期しないインターフェイス名...代わりに式が必要です」というエラーが表示されます。エラー。何か案は?