Subclassing UIGestureRecognizer with Swift and Xcode 6 - how do I import UIGestureRecognizerSubclass.h? Subclassing UIGestureRecognizer with Swift and Xcode 6 - how do I import UIGestureRecognizerSubclass.h? ios ios

Subclassing UIGestureRecognizer with Swift and Xcode 6 - how do I import UIGestureRecognizerSubclass.h?


The Swift equivalent is simply:

import UIKit.UIGestureRecognizerSubclass

That imports the appropriate header.


You need to have or create a -Bridging-Header.h file to import objc headers such as the one you want. The import line looks like this:

#import <UIKit/UIGestureRecognizerSubclass.h>

If you don't already have a bridge header file in your app, the easiest way to get one is to add an objc class to your project, and xcode will ask if you want one, then creates the file and ties it into the settings for you. You can then delete the objc class.

Everything in that header file is automatically made available to your Swift code, no need to add any import lines in your swift files.