我收到一个错误
线程 1:信号 SIGABRT
这是代码
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
/* FOR SIMPLE CELL */
static NSString *MyIdentifier = @"MyCell";
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier];
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
word *worddc = [Array objectAtIndex:[indexPath row]]; //ERROR thread 1 signal SIGABRT
cell.textLabel.text = worddc.word_alphabet;
return cell;
}