我已经在通过委托方法 clickedButtonAtIndex 尝试它:但是一旦用户按下“确定”,我就需要通过导航控制器推送视图......
我无法在方法内分配视图,Xcode 无法识别代码中视图控制器的名称。知道我错了吗?
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
switch(buttonIndex) {
case 0:
ReminderCompleted *view = [[ReminderCompleted alloc]initWithNibName:@"ReminderCompleted" bundle:nil];
[view.navigationController pushViewController:view animated:NO];
break;
case 1:
//cancel
break;
default:
break;
}
我收到一些错误