Change the button titles on SLComposeServiceViewController?

后端 未结 4 941
心在旅途
心在旅途 2021-01-04 05:05

Is there a way to change the button titles on the SLComposeServiceViewController? I tried to change the bar button items on the navigation item, but those aren\'t the right

4条回答
  •  一生所求
    2021-01-04 05:53

    The answer by Kasztan no longer works with the latest iOS; here is the latest fragile solution..

    class CustomServiceViewController: SLComposeServiceViewController { override func viewDidLoad() { let navigationBar = view.subviews.last?.subviews?.last? as? UINavigationBar let postButton = navigationBar?.subviews[3] as? UIButton postButton?.setTitle("Done", forState: .Normal) } }

提交回复
热议问题