如何在SLComposeViewController中访问POST按钮?

时间:2015-11-04 14:58:10

标签: ios swift ios8-share-extension

在右上方有禁用的帖子按钮。如何更改文本或手动启用?

    navigationBar.rightBarButtonItem?.enabled = true 

不起作用

enter image description here

1 个答案:

答案 0 :(得分:5)

  1. 无法改变其文字。
  2. 可以通过拨打validateContent()

    随时启用或停用它
    override func isContentValid() -> Bool {
        super.isContentValid()
    
        //valdate your SLComposeViewController here
    }
    
  3. isContentValid()validateContent()调用。