Heyho,
我有一个简单的表视图,其中包含来自XML文件的数据。 现在我想显示更多信息。因此我使用方法“didSelectRowAtIndexPath”。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"test");
}
但是如果我选择了tableView的一个项目,我收到了一个错误:
Tread 1:EXC_BAD_ACCESS(code = 2,address = 0x15)
在
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
也没有显示NSLog消息。
希望有人可以提供帮助。 :)