我開發一個iOS應用,將它們輸入憑證的基礎上進行身份驗證的用戶庫中點擊刪除視圖控制器。上的按鈕
我做的是什麼,從視圖控制器說TestViewController
當用戶點擊使用下面的代碼按鈕,我就TestViewController
頂部設置一個新的視圖控制器LoginScreenViewController
。
LoginScreenViewController * LoginScreen = [[LoginScreenViewController alloc] initWithNibName:nil bundle:nil];
[self.view addSubview:LoginScreen.view];
這LoginScreenViewController
包含Cancel
按鈕,關於這一點我想刪除LoginScreenViewController
。爲此,我使用以下代碼
[self.view removeFromSuperview];
問題是當我執行此代碼時,我的應用程序崩潰。
由於我LoginScreenViewController
由庫定義的,我希望它是獨立於呼叫者的實現。
編輯:
在LoginScreenViewController.m
我用下面的代碼的事件處理程序添加到取消按鈕。
[button addTarget:self action:@selector(CancelButtonHandler:) forControlEvents:UIControlEventTouchUpInside];
當我點擊Cancel
按鈕時,該應用程序崩潰。即使CancelButtonHandler
不包含任何代碼行。
你能告訴你得到了什麼錯誤嗎?並確保[self.view removeFromSuperview]中self.view不爲零; – BaSha