29,049
社区成员




-(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];
}