我是iPhone開發的綠色之手,我只是對一個方法UIActionsheet,即「showInView」感到困惑。那麼調用動作表的視圖和它自己的動作表之間的關係是什麼?
實際上,我想在動作表中自定義按鈕,所以我爲它創建了一個類並覆蓋了這些方法,並且我真的想要在superview中調用這些方法,任何人都可以獲得解決方案?如何獲取Actionsheet的容器類?
謝謝!
(順便說一句,我嘗試下面的代碼,但它不工作。)
- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated
{........
else if (buttonIndex==sharers.count+1)
{
AddCommentViewController *parentController=(AddCommentViewController *)[self.superview nextResponder];
}
我看不出您顯示的代碼與自定義操作表按鈕或製作任何子類有關的任何內容。 – PeyloW
它在AddCommentViewController中,我調用了自定義的工作表。此處的代碼位於Actionsheet類中,我想在AddCommentViewController中調用方法。 – user880449