メニュー ナビゲーションに ECSlidingViewController を使用しています。オプションのログアウトがあり、選択時にユーザーがログアウトします。ユーザーがログインすると、メニューバーは非表示ではなく表示されます。ログアウト選択時にメニューバーを非表示にする Swift コード。
import Foundation
import UIKit
import Parse
class MenuTableViewController: UITableViewController {
@IBAction func unwindToMenuViewController(segue: UIStoryboardSegue) {
}
override func viewDidLoad() {
super.viewDidLoad()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == 4 {
PFUser.logOut()
var loadLoginPage: UINavigationController = self.storyboard?.instantiateViewControllerWithIdentifier("LoginNavigationController")! as UINavigationController
self.presentViewController(loadLoginPage, animated: false, completion: nil)
}
}
}