2011-12-11 58 views
0

我正在ipad應用程序中工作,我有一個viewController A,它有許多子視圖viewcontroller b,c,d,e,f ...當我想從一個viewcontroller中選擇一個單元格來獲得一個prsent模態視圖「全屏幕」它不工作,我怎麼能解決這個問題如何從子視圖調用presentModalView?

+0

你可以發佈你的一些code..that的將是有幫助的,而回答 –

+0

就叫'從VC A. – Mat

+0

presentModalViewController' @Mat我不能從VC的呼叫因爲選擇的方法是這樣在vc B中: – HDNZ

回答

0

爲你添加了所有的ViewController因爲你並不需要出示子視圖它

你只是嘗試

[self.view bringsubviewtofront:a.view]; 

希望這幫助,

編輯

use following local notification calling methods to solve your problem, 

    //place in class from which you want to perform action 
    [[NSNotificationCenter defaultCenter] addObserver:self 
    selector:@selector(openLarge:)name:@"openLarge" object:nil]; 


    //place in class where you want to perform action 
    [[NSNotificationCenter defaultCenter] postNotificationName:@"openLarge" 
    object:nil userInfo:nameDict];  

問候,

+0

我不能從VC調用,因爲選擇的方法是在VC B是這樣的: – HDNZ

相關問題