我有一个带有nib文件的类。在那个nib文件上我放了一个按钮。
我想当有人按下那个按钮时,它会带你到另一个班级的视图,即nib文件。
我试过这个
FormController *controller = [[FormController alloc] initWithNibName:@"countriesViewController" bundle:nil];
[self.navigationController pushViewController:controller animated:YES];