I've imported a framework file to my project I created 2 files in Xcode project which import it : Drawing.swift
import Foundation
import WILLCore
class DrawingView: NSObject {
}
Drawing.m
#import <Foundation/Foundation.h>
#import <WILLCore/WILLCore.h>
@interface TestFW : NSObject
@end
But it gives an error:No such module 'WILLCore'
in Swift file. The Objective-C file is built fine. What happens with this framework?
Please help!