您好,登錄后才能下訂單哦!
小編給大家分享一下iOS頁面跳轉及數據傳遞的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
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 中定義全局變量實現中間數據的存儲。
以上是“iOS頁面跳轉及數據傳遞的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。