あるプロジェクトから別のプロジェクトにコードをコピーしてテーブルビューに入力していますが、このエラーが発生します
ABC Forbids explicit message sent of auto release
UITableViewCellオブジェクトを作成しようとしているとき。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
// this line produces the error
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}