我尝试使用uitableview中的自定义单元格创建类似视图的表单。我有3个自定义单元格,一个有6个UITextFields
,一个只有一个,另一个有UITextView。它显示完美,并且上下滚动没有任何问题。我的问题是每当我选择任何东西时,无论是textField还是TextView,它都会与EXC_BAD_ACCESS
崩溃。我的断点显示文本字段不是零。
关于可能导致我的崩溃的任何想法?
自定义单元格 - .h文件中的属性 - 在自定义单元格类
中设置的委托@interface CandidateInfo1Cell : UITableViewCell
@property (nonatomic, strong) IBOutlet UITextField *firstNameText;
@property (nonatomic, strong) IBOutlet UITextField *lastNameText;
@property (nonatomic, strong) IBOutlet UITextField *cityText;
@property (nonatomic, strong) IBOutlet UITextField *stateText;
@property (nonatomic, strong) IBOutlet UITextField *emailText;
@property (nonatomic, strong) IBOutlet UITextField *phoneText;
@end
注册我的笔尖:
UINib *infoCellNib = [UINib nibWithNibName:REUSE_INFO_CELLID bundle:[NSBundle bundleForClass:[InfoCell class]]];
[self.listTable registerNib:infoCellNib forCellReuseIdentifier:REUSE_INFO_CELLID];
的cellForRowAtIndexPath:
InfoCell *cell = [tableView dequeueReusableCellWithIdentifier:REUSE_INFO_CELLID];
[self configureInfoCell:(InfoCell *)cell forRowAtIndexPath:indexPath];
return cell;