You can't write to self.state
in the subclass unless you import UIGestureRecognizerSubclass.h
as indicated here.
In a Swift environment, I'm confused how I'd go about importing this. I tried import UIGestureRecognizerSubclass.h
, and without the .h
, but I still can't write to self.state
.
How would I accomplish this?
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:
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.
The Swift equivalent is simply:
That imports the appropriate header.