iOS Parse PFObject Subclassing with Swift Behaviour
I have a strange issue, my subclassing works in all my view controllers except one. I have imported everything that is required, but this one class is giving me the "Missing argument for parameter 'className' in call" My subclass import Foundation import Parse class Session : PFObject, PFSubclassing { class func parseClassName() -> String { return "Session" } } // i have removed the non important info I perform the Session.registerSubclass() In the app delegate In EVERY class I have i can create a session via var se = Session() But in this one class, this will not work. The class import UIKit