Tag: UIKit UIViewController
- (void)viewDidLoad { [super viewDidLoad]; textView = [[UITextView alloc] initWithFrame:self.view.bounds]; [textView setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight]; [self.view addSubview:textView]; }
EditListViewController *editListViewController = [[EditListViewController alloc] initWithStyle:UITableViewStyleGrouped]; [[self navigationController] pushViewController:editListViewController animated:YES]; [editListViewController release];