私はObjective-Cを初めて使い、UITableViewで作業しようとしています。ここで私はエラーを取得する方法は次のとおりです。'UITableViewCell'の表示されない@interfaceは、セレクタ 'dequeueReusableCellWithIdentifier:'を宣言します。
-(UITableViewCell *)tableView:(UITableViewCell *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MainCell"];
if(cell == nil){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"MainCell"];
}
}
は誰が私を助けてくださいもらえますか?
使用するようにしてくださいする必要がありますそのようなメソッド名を入力するためのXcodeのオートコンプリート機能。これは、このような誤植を避けるのに役立ちます。 – rmaddy
@rmaddyありがとう! –