我在故事板中使用故事板和xib,我想從故事板去xib文件,但無法扭轉它。所以我怎麼去從xib文件的故事板。 thnx提前。 故事板到廈門國際銀行:我如何去xib的故事板
Dashboard1ViewController *tempView = [[Dashboard1ViewController alloc] initWithNibName:@"Dashboard1ViewController" bundle:nil];
tempView.passemail = [matches valueForKey:@"email"];
[self.view addSubview:tempView.view];
它工作正常,但廈門國際銀行,以故事情節我已經使用這個代碼
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"loginUI" bundle:nil];
login2ViewController *vc = [sb instantiateViewControllerWithIdentifier:@"login2"];
vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:vc animated:YES completion:NULL];
,但它無法正常工作。
請看看這個:HTTP://stackoverflow.com/questions/9190680/from-xib-to-storyboard – iDeveloper