これはばかげた質問かもしれませんが、私はiPhoneの開発に不慣れです。とにかくNSMutableArray
、サーバーからロードされた情報を持っています。私はこの情報をテーブルに載せようとしています。私はこれを行う方法についていくつかのアイデアを探しましたが、これを行うために多くの人が使用しているように見えるこのコードに遭遇しました:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [myArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"UITableViewCell"];
if (!cell) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"UITableViewCell"] autorelease];
}
cell.textLabel.text = [myArray objectAtIndex:[indexPath row]];
NSLog(@"Cell is %@", [myArray objectAtIndex:indexPath.row]);
return cell;
}
今私の質問はifステートメントの中にありますそれは私に自動解放で2つのエラーを与えます:参照カウントモードでは利用できず利用できません、そしてアークは自動解放のメッセージ送信を禁止します、何か考えはありますか?助けてくれてありがとう