私はXcodeが好まないUITableViewCellのカスタムサブクラスを2つ持っています。 forReuseIdentifier:そうのような方法:私はregisterClass呼び出ししようとしている「代わりに、予期しないインターフェイス名...期待される表現」UITableViewCellのカスタムサブクラスを登録できません
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];
そして、私はエラーを取得していますがエラー。何か案は?
これだけです!私は私の答えを投稿するまでこれを見ていない... – Daniel