2017-05-24 175 views
0

我創建了一個窗口,在該窗口中進行自定義視圖。這是我的PROJECT按鈕上的應用程序崩潰單擊奇怪問題

Credetials:[email protected],密碼:2

只需通過credetials登錄並點擊側邊欄第二個選項,然後點擊登錄。

這裏我的代碼添加到廈門國際銀行視圖在我的我的主視圖

- (IBAction)watchClicked:(id)sender { 
    //id animator = [[ContactUsVC alloc] init]; 
    ContactUsVC* vc = [[ContactUsVC alloc] initWithNibName:@"ContactUsVC" bundle:nil]; 
    vc.view.frame = self.view_main.bounds; 

    [self.custom_view addSubview:vc.view]; 

    [self.view_main setEnabled:NO]; 

} 

的視圖 - 控制我把按鈕ContactUsVC,當我點擊應用程序崩潰。我不明白爲什麼簡單的點擊不會發生。

這是錯誤

此行

ContactUsVC* vc = [[ContactUsVC alloc] initWithNibName:@"ContactUsVC" bundle:nil]; 

Exception Name: NSInvalidArgumentException 
Description: -[_NSImageAuxiliary btn_click_phone_no:]: unrecognized selector sent to instance 0x6080002c10a0 
User Info: (null) 
+0

ceck一旦你btn_click_phone_no的出口名稱是正確的OT不 –

+0

我檢查,並刪除操作方法,並聲明雖然它不是在你的項目中工作 –

+0

檢查一次entirly –

回答

0

廣場斷點,並檢查按鈕的操作是否執行not.By崩潰的描述似乎圖像按鈕。你有沒有在按鈕上放置任何圖像?

+0

只需下載我的項目並解決它。不要盲目回答。 –

+0

其完成。你只需添加一行。 ContactUsVC * vc = [[ContactUsVC alloc] initWithNibName:@「ContactUsVC」bundle:nil]; [self addChildViewController:vc]; vc.view.frame = self.view_main.bounds; [self.custom_view addSubview:vc.view]; [self.view_main setEnabled:NO]; – santak

+0

添加[self addChildViewController:vc]; 之前vc.view.frame = self.view_main.bounds;和它的工作。 – santak