Import Framework in Swift Project, Xcode

101,621

Solution 1

If I get you correctly you don't have a separate build target for your framework (you already built it with Xcode 5) and included the framework into your project's build target.

The part of the documentation you're referring to is about frameworks within different targets. Since your framework is in the project's target this part of the documentation doesn't apply here.

In your case you can't do an import of the framework in your Swift file. That's why you get the error message "No such module myFramework". myFramework is no module -- it is part of your project's module (which is by default determined by your product name). As such the classes in your framework should be accessible.

However your framework is written in Objective-C. So what you have to do is to import the Swift facing classes in your bridging-header as described here.

Please note that this has nothing to do with the Swift import of a module. The import directive in the bridging-header file just notifies the compiler to 'translate' Objective-C header files to Swift syntax and makes the public header visible to Swift.

So what should you do now?

  • First import the header files you're interested in in the bridging-header. You only need to import the headers you will interact with in Swift.

  • Try to compile your project in this stage. If Xcode can't find the header files of the framework your problem is probably not related to Swift or Xcode 6 but a problem with including frameworks in general.

  • After that try to instantiate a class you imported in the bridging-header, maybe in your AppDelegate.swift. Xcode auto-completion should offer you the type names.

Hope this helps.

Solution 2

On Swift:

Create Framework:-

  1. Start Xcode -> Create a new Xcode Project -> iOS -> Framework & Library -> Cocoa Touch Framework -> Name the framework(ex. sampleCocoaFramework) -> Create.

  2. Set Target -> General -> Deployment info -> Deployment Target.

  3. Add a public class: File -> New File -> iOS -> Swift File -> Name it (ex. openCocoaClass) -> Create.

  4. Now add some code to the openCocoaClass.swift.

    import Foundation
    
    public class openCocoaClass {
    
        public init() {
    
        }
    
        public var samplePublicVariable = "samplePublicVariable @ openCocoaClass"
    
        public func samplePublicFunction()
        {
            print("samplePublicFunction @ openCocoaClass")
        }          
    

    }

  5. Clean the project : Product -> Clean

  6. Configure the scheme settings : Product -> Scheme -> Edit Scheme -> Run -> Build Configuration -> Release.

  7. Build the framework : Product -> Build.

  8. Export the framework : Products -> Select the framework -> Identity and type -> Full Path -> Released Framework.

Adding Framework to Project:-

  1. Start a Xcode project and name it (ex. CocoaFrameworkTest).

  2. Drag and drop the sampleCocoaFramework.framework to the CocoaFrameworkTest's project folder.

  3. Target -> General -> Embed Binaries -> Add Other -> Select Framework -> Copy Items if needed -> Done.

Accessing Framework on ViewController:-

import UIKit
import sampleCocoaFramework


class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let frameworkObject =  openCocoaClass.init()
        frameworkObject.samplePublicFunction()
        print(frameworkObject.samplePublicVariable)


    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
}

Solution 3

According to the Swift documentation

To import Objective-C code into Swift from the same target

  1. In your Objective-C bridging header file, import every Objective-C header you want to expose to Swift. For example:

    #import "XYZCustomCell.h"

    #import "XYZCustomView.h"

    #import "XYZCustomViewController.h"

  2. Under Build Settings, make sure the Objective-C Bridging Header build setting under Swift Compiler - Code Generation has a path to the header. The path must be directly to the file itself, not the directory that it’s in. The path should be relative to your project, similar to the way your Info.plist path is specified in Build Settings. In most cases, you should not need to modify this setting.

Any public Objective-C headers listed in this bridging header file will be visible to Swift. The Objective-C functionality will be available in any Swift file within that target automatically, without any import statements. Use your custom Objective-C code with the same Swift syntax you use with system classes.

let myCell = XYZCustomCell()
myCell.subtitle = "A custom cell"

Also, make sure the "Defines Module" build setting under "Packaging" is set to "Yes."

Solution 4

you need in your objective c project a public header with the same name of you app, in you case FrameworkName.h and add all the classes that you want to expose (those classes should be added as public header in the project properties) Once you do that, you add the framework and add the reference to your public header import FrameworkName

Solution 5

You can import external objC framework into swift project using below syntax:

#import "objCExternalFramework-name/headerfilename.h"

Share:
101,621
phnmnn
Author by

phnmnn

Android and iOS developer

Updated on July 09, 2022

Comments

  • phnmnn
    phnmnn almost 2 years

    I'm trying to import myFramework into a project. I've added myFramework in Build Phases->Link Binary With Libraries.

    Objective-c works:

    #import <UIKit/UIKit.h>
    #import <myFramework/myFramework.h>
    

    But with in Swift, I get a No such module myFramework error:

    import UIKit
    import myFramework
    

    According to the Swift documentation:

    Importing External Frameworks

    You can import external frameworks that have a pure Objective-C codebase, a pure Swift codebase, or a mixed-language codebase. The process for importing an external framework is the same whether the framework is written in a single language or contains files from both languages. When you import an external framework, make sure the Defines Module build setting for the framework you’re importing is set to Yes.

    You can import a framework into any Swift file within a different target using the following syntax:

    SWIFT

    import FrameworkName
    

    You can import a framework into any Objective-C .m file within a different target using the following syntax:

    OBJECTIVE-C

    @import FrameworkName;
    

    I created myFramework using Xcode 5. Xcode 5 doesn't have a "Defines Module" build setting.

    Where is the problem?

  • phnmnn
    phnmnn almost 10 years
    I create myFramework in xcode 5, he dont have Defines Module build setting
  • Satyam
    Satyam over 9 years
    I don't think just #import "XYZCustomCell.h" etc will work. You have to provide the framework name as in example "#import <MyFramework/XYZCustomCell.h>". Please cross check your answer.
  • Nate Uni
    Nate Uni over 9 years
    I followed the instructions at swift docs. I wanted to import the JWFolders code. After doing the swift doc steps, I wrote the import statement to import JWFolders and I got a "No such module 'JWFolders'" error statement. This is the missing step that I required: 1. Click on your project name on the top left nav bar. 2. Click on "Build Phases" 3. Click on "Embedded Frameworks" 4. Click the "+" 5. Find the header file and add it. BUT--> I can only access this "embedded frameworks" drop down if I have previously added a framework. This is a hacky way to do it. What is the correct way?
  • Juan Boero
    Juan Boero over 8 years
    could you please elaborate more on your answer? this a Swift project, not a Objective-c one.
  • Juan Boero
    Juan Boero over 8 years
    not working, wich version of Swift is this for? getting a "Expected Indetifier In Import declaration"...
  • Matthew Bahr
    Matthew Bahr over 6 years
    This is wrong. You do not encapsulate any sort of import statement with quotations in a Swift4 import.
  • MrBr
    MrBr about 6 years
    This was a great way to move forward. I'm wondering what's the best way to import a framework that is still under development in another Xcode project. I don't want to follow all of these steps each time I make a change. Ideally I would just have the framework and the app in the same Xcode project so that I don't even have to switch between windows.
  • LukeSideWalker
    LukeSideWalker over 3 years
    Thanks. Everything is fine except your step 8 ("Export the framework : Products -> Select the framework -> Identity and type -> Full Path -> Released Framework") I can't do. Maybe because of other Xcode version. Could you please update that step 8. Thanks in advance.
  • Pramod Shukla
    Pramod Shukla about 2 years
    @MrBr did you get the solution.