To check the class in Swift, use “is” (as explained under “checking Type” in the chapter called Type Casting in the Swift Programming Guide)
if self.window.rootViewController is MyViewController {
//do something if it's an instance of that class
}