开发者

Can i change the button's content in MFMessageComposeViewController?

开发者 https://www.devze.com 2023-02-28 22:48 出处:网络
I want to use MFMessageComposeViewController to send a message. Can I change the button\'s content? For example, from \"Send\" to \"OK\"?开发者_JAVA技巧You are not allowed to customize the MFMessageCo

I want to use MFMessageComposeViewController to send a message. Can I change the button's content? For example, from "Send" to "OK"?开发者_JAVA技巧


You are not allowed to customize the MFMessageComposeViewController by apple.
Check in the Apple Documentation for MFMessageComposeViewController


NO,You can't change the content of send button in MFMessageComposeViewController.

Check in the Apple Documentation for MFMessageComposeViewController there is no such option available


I don't think so, you can add this:

messageCtroller.navigationBar.topItem.rightBarButtonItem.title = @"fire";
//original is "**cancel**";
messageCtroller.viewControllers.lastObject navigationItem].title = @"something";
//original is  "**New Message**".
0

精彩评论

暂无评论...
验证码 换一张
取 消