Class cls = NSClassFromString([NSString stringWithFormat:@"Base%@Controller", @(indexPath.row+1)] );
if ( cls )
{
//[self.navigationController pushViewController:[[cls alloc]init] animated:YES];
[self.navigationController pushViewController:[cls new] animated:YES];
}
self.tableView = ({
UITableView *view = [[UITableView alloc]init];
//view.frame = self.view.bounds;
[view mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view);
}];
[self.view addSubview:view];
view.delegate = self;
view.dataSource = self;
view;
});