我知道如何處理2個視圖之間的共享數據。但是,如果我想使用tabBarController共享數據,我會迷路。在UITabBarController的UIViewController和UIViewController之間共享數據xcode
這是我的IBAction移動到我的tabBar。
-(IBAction)goToPage2:(id)sender
{
tabController.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:tabController animated:YES];
}
我需要在我的tabBar的第一個視圖中在我的IBAction中共享我的NSString * dataStr。
firstView *first = [[firstView alloc] initWithNibName:@"firstView" bundle:nil];
first.dataStr = name.text;
[tabController presentModalViewController:first animated:YES];
此代碼不起作用。
THX
這是作品好謝謝! – user627441 2011-05-24 11:17:44