cocoa touch framework assets not visible in App Pr

2019-06-14 23:23发布

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 ?

4条回答
叛逆
2楼-- · 2019-06-14 23:42

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

查看更多
来,给爷笑一个
3楼-- · 2019-06-14 23:43

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];
查看更多
smile是对你的礼貌
4楼-- · 2019-06-14 23:44

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.

查看更多
孤傲高冷的网名
5楼-- · 2019-06-14 23:49

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

查看更多
登录 后发表回答