This is what I do in my controller:
let button = FBSDKLoginButton(frame: CGRectMake(100, 100, 300, 50))
button.readPermissions = ["public_profile", "user_friends"]
view.addSubview(button)
After viewDidLoad I click that button, write my login and password and since then I always have such view:
How to log out from that? It appears always, even I remove the app from Simulator. What is wrong?


