Mr.Me
Mr.Me

Reputation: 9276

cocoa touch framework assets not visible in App Project

I've been trying since morning creating a cocoa touch farmework to put my self containing widget inside it, and to allow any app I'm working on to use it in the future.

I've managed to build the project and export .framework file, but all the assets are not showing now. all my Images are inside assets catalog.

And they seem to be exported since the .framework file has (assets.car) file inside it.

I'm currently accessing them using

UIImage* icon = [UIImage imageNamed:@"iconName"];

But it always returns null, Any ideas ?

Upvotes: 20

Views: 8364

Answers (4)

Evgenii
Evgenii

Reputation: 37339

You can supply the framework bundle when creating an image. In Swift 2:

class func getMyImage() -> UIImage? {
    let bundle = NSBundle(forClass: self)
    return UIImage(named: "YourImageName", inBundle: bundle, compatibleWithTraitCollection: nil)
}

Swift 3:

class func getMyImage() -> UIImage? {
    let bundle = Bundle(for: type(of: self))
    return UIImage(named: "YourImageName", in: bundle, compatibleWith: nil)
}

Here is a demo project containing a framework with an image and an app that uses it.

https://github.com/marketplacer/AssetFrameworkDemo

Upvotes: 24

Tim Sneed
Tim Sneed

Reputation: 490

I have a static class that helps the framework caller. It has a method called

+ (NSBundle*) bundelForHelper;

The implementation looks like so:

+ (NSBundle*) bundelForHelper{
    return [NSBundle bundleForClass:self];
}

Then in my view controller I import the helper and call this in viewdidload:

UIImage *image = [UIImage imageNamed:@"MyImage"
                            inBundle:[MyHelper bundelForHelper]
                 compatibleWithTraitCollection:self.traitCollection];

Upvotes: 0

kondi
kondi

Reputation: 27

Please try accessing image in the .framework as below :

[[UIImage alloc] initWithContentsOfFile:@"Test.framework/abc.png"];

I assume you have copied the framework and is part of the App bundle

Upvotes: 0

E. Rivera
E. Rivera

Reputation: 10938

You can try accessing your images as:

UIImage* icon = [UIImage imageNamed:@"MyLib.framework/iconName"];

Check this question about creating frameworks containing resources.

Also I recommend using CocoaPods instead even if your code is closed source.

Upvotes: -1

Related Questions