当我尝试在第三行设置我的UIDatePicker的日期时,我收到错误EXC_BAD_ACCESS(code = EXC_ARM_DA_ALIGN)。我运行应用程序时有时会出现错误。有时错误根本没有出现。
startTimePickerView = [[UIDatePicker alloc] initWithFrame:
CGRectMake(0, self.view.frame.size.height - 216,
self.view.frame.size.width, 216)];
[startTimePickerView addTarget:self
action:@selector(datePickerDateChanged:)
forControlEvents:UIControlEventValueChanged];
startTimePickerView.date = [NSDate date];
对此问题的任何帮助都会受到赞赏,因为我不知道为什么会这样。