I'm trying to use some of my swift
classes inside of my Objective C
project.
Before to do it, I have validated the ios versions.ç
I'm using Can't use Swift classes inside Objective-C
but, at the moment to update the MyProject-Bridging-Header.h
with:
@import Foundation;
@objc public class myClass
I get the error:
Unexpected '@' in program Expected ';' after top level declarator
How can I fix this error to import my swift
classes?