我需要實現我的MonoTouch應用程序的狀態保存協議,像蘋果的文檔中描述:應用程序狀態保存和恢復中的MonoTouch
App State Preservation and Restoration
但我找不到對任何文件或項目樣本關於UIViewControllerRestoration協議的Xamarin網站。
任何幫助表示讚賞。
我需要實現我的MonoTouch應用程序的狀態保存協議,像蘋果的文檔中描述:應用程序狀態保存和恢復中的MonoTouch
App State Preservation and Restoration
但我找不到對任何文件或項目樣本關於UIViewControllerRestoration協議的Xamarin網站。
任何幫助表示讚賞。
此協議當前未在MonoTouch中綁定。有在這裏討論了一個錯誤:
https://bugzilla.xamarin.com/show_bug.cgi?id=8778
這就是說,有在AppDelegate中,應用了類似的回調:viewControllerWithRestorationIdentifierPath:編碼器:綁定在MonoTouch中的方法:
的UIViewController GetViewController (UIApplication應用程序,string [] restorationIdentifierComponents,NSCoder編碼器)。
對於沒有設置恢復類別的每個保存的控制器,這將被調用一次。因此,代替恢復類,您可以在App Delegate中重寫此方法。