试图让一个按钮确认在具有特殊类的 tableview 中选择的索引。这就是我将 NSLog 所选索引的结果的方式。
- (void)selector:(IZValueSelectorView *)valueSelector didSelectRowAtIndex:(NSInteger)index {
NSLog(@"Selected index %d",index);
}
但我不确定如何使用按钮确认这一点,因为该按钮使用 IBAction。
我希望他们单击按钮后弹出警报。这是我到目前为止所拥有的,但我收到一个错误,因为它无法识别索引的含义:
- (IBAction)submit:(id)sender {
UIAlertView *submit = [[UIAlertView alloc]
initWithTitle:@"Submit"
message:(@"Are you sure you want to submit %i", index)
delegate:self
cancelButtonTitle:@"No"
otherButtonTitles:nil];
[submit show];
}