在表视图中使用静态单元格时如何执行注销操作?

时间:2016-09-18 16:54:26

标签: swift firebase firebase-authentication logout

我正在使用Firebase,并且正在尝试在按下单元格时注销用户。出于某种原因,我无法删除静态单元格表​​视图中的标签,因此我尝试添加一个按钮并隐藏标签。

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试使用单元格选择注销:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    if indexPath.section == 0 && indexPath.row == 0 {
        try FIRAuth.auth()?signOut()
    }
}

第二个选项,使按钮操作工作将单元格样式更改为自定义:

Logout Cell

目前,Label位于View Hierarchy中的Button之上,因此按钮操作无效。