iOS頁面跳轉:
第一種
[self.navigationController pushViewController:subTableViewController animated:YES];
//描述:通過 NSNavigationBar 進行跳轉 [self.navigationController popViewControllerAnimated:YES]; //描述:在子視圖返回到上級視圖
第二種
UIViewController *control = [[UIViewController alloc] init]; [self presentModalViewController:control animated:YES]; [control release]; //描述:通過事件進行跳轉 [self dismissModalViewControllerAnimated:YES]; //描述:通過事件進行返回。
第三種
[self.view.window addSubview:otherview]; [self.view removeFromSuperview]
數據傳遞:
1)采用代理模式 子viewcontroller設計 代理協議,定義協議接口,父viewcontroller 實現協議接口,實現子viewcontroller 退出時將相關數據更新到父視圖。
2)采用ios的消息機制 父viewcontroller注冊消息 子viewcontroller 發送消息,觸發父viewcontroller的消息處理。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(setData:) name:kNotificationMessage object:nil];//注冊監聽,其中setData用來處理消息
[[NSNotificationCenter defaultCenter] postNotificationName:kNotificationMessage object:self userInfo:infoDict];//發送消息
3)采用database做為數據中間的存儲媒介,子viewcontroller將狀態數據存入DB,父viewcontroller從DB獲取數據更新view。
4)采用ios的NSDefault 存儲
5)通過AppDelegate 中定義全局變量實現中間數據的存儲。