关于bundle资源

2018-02-02  本文已影响5人  今年27

当你想写一个静态库的时候.有些资源是需要单独拿出来的, 那么就需要bundle包来实现

那么怎么做呢.

我自己的做法就是把所有的文件直接放在一个文件夹下面,然后用修改尾缀为name.Bundle,然后拖进工程即可.

至于工程里面写的代码是:

#define myBundle [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"images.Bundle"]

#define BundleImage(x) [UIImage imageWithContentsOfFile:[myBundle stringByAppendingPathComponent:x]]

这样就可以直接写名字即可

上一篇下一篇

猜你喜欢

热点阅读