-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath
{
UITableViewCell *cellName=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell1"];
NSDictionary *contentdict=[innerarray objectAtIndex:indexPath.row];
static NSString *cellidentify=@"cell";
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellidentify];
}
この私のコードはすべて機能していますが、テーブルビューをスクロールするとクラッシュが表示されますが、配列の値を正しく指定し、デリゲートとデータソースを自己として指定しても、変更を書き込む必要がありますか????? 私はXcode 4.5を使用しています