Change the button titles on SLComposeServiceViewController?

后端 未结 4 944
心在旅途
心在旅途 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:40

    Simply accessing from navigationController!.navigationBar does the charm. The following should help.

    self.navigationController!.navigationBar.topItem!.rightBarButtonItem!.title = "Save"
    

提交回复
热议问题