2012-11-08 20 views
0

我想設置isAccessibilityElement按鈕發送,取消,刪除草稿,保存草稿,但我無法訪問這些按鈕。 我已經嘗試:如何訪問按鈕發送,取消在MFMailComposeViewController

mailComposer.navigationBar.topItem.isAccessibilityElement=YES; 

mailComposer.navigationBar.topItem.rightBarButtonItem.isAccessibilityElement=YES; 

請幫幫忙!

回答

4

您無權訪問MFMailComposeViewController的發送和取消按鈕。這些按鈕及其動作是預先定義的,並不意味着要改變。

從蘋果文檔:

*Important: The mail composition interface itself is not customizable and must not be modified by your application. 
In addition, after presenting the interface, your application is not allowed to make further changes to the email content.* 
+0

而且,隨着iOS 6以上,這些按鈕是不是視圖層次結構的一部分;它們是遠程UI元素,完全由另一個進程繪製。 –

相關問題