I have a project based on Objective-C. I have created bridging headers for Swift and can successfully call Objective-C files there. However I can not import AppDelegate.h
in the new Swift file. Here what I try:
import Foundation
import UIKit
#import "AppDelegate.h";
it returns error:
Expected identifier in import declaration
How to import that?