如何删除viewController中编码的视图按钮?

时间:2015-10-28 19:46:47

标签: ios swift uiviewcontroller

我在Swift App的viewController中添加了一个按钮,当我通过modal segue更改为下一个Viewcontroller时,此元素将显示在下一个viewController中。如何删除查看此内容?

 override func viewDidLoad()
{
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
    let logInButton = TWTRLogInButton(logInCompletion: {
        (session: TWTRSession!, error: NSError!) in
        ...

        print(session.userName)
        ...

    })

    logInButton.center = self.view.center
    self.view.addSubview(logInButton)//Here add the button
}

我正在尝试

 self.view.delete(logInButton)

但这会得到错误。

谢谢!

1 个答案:

答案 0 :(得分:0)

您是否尝试从超视图中删除按钮?在这种情况下,您将尝试:

loginButton.removeFromSuperview()