.m文件中已经添加#import "NextControlView .h" -(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{    
    NSInteger row = indexPath.row;   
    NextControlView *nextControlView = [[NextControlView alloc] initWithNibName:@"NextControlView" bundle:nil];    
    nextControlView.Page=row;   
    [self.navigationController pushViewController:nextControlView animated:YES];       
}
可是程序执行到nextControlView.Page=row; 这里就GDB:interrupted
请高手指点一二