Код: Выделить всё
PFUser.logOut()
var currentUser = PFUser.currentUser() // this should be nil but it isn't :(
print(currentUser)
Код: Выделить всё
PFUser.logOutInBackground()
var currentUser = PFUser.currentUser() // this is also not nil :(
Код: Выделить всё
Optional(
{
Значит, я думаю, что приложение создает нового пользователя?!
Подробнее здесь: https://stackoverflow.com/questions/327 ... rse-swift2