组件化-xib等资源文件处理

2018年11月7日
模块化后,经常可能出现图片不显示,或xib资源文件找不到导致奔溃

原因:原来都是在主工程获取,所以都能找到,目前将资源文件都移到对应的库里面,所以按原来的用法到主工程就考不到了,所以如果怕麻烦就全部纯代码开发即可。

一.xib文件
1模块化前


image.png

使用:

-(UITableView *)tableView{
    if (!_tableView) {
        _tableView = [[UITableView alloc] init];
        _tableView.frame = CGRectMake(0, 0, HHBWIDTH, HHBHEIGHT - nav_height);
        [_tableView registerNib:[UINib nibWithNibName:@"HuCourseExchangeCell" bundle:nil] forCellReuseIdentifier:kCellIdentifier];
        _tableView.delegate = self;
        _tableView.dataSource = self;
        _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        _tableView.tableFooterView = [UIView new];
        [self.view addSubview:_tableView];
        WS(weakSelf);
        [HuTableViewRefresh tableViewRefresh:_tableView success:^(refreshType refresh) {
            refresh == TableViewHeaderRefresh ? weakSelf.pageNum = kPageNum: weakSelf.pageNum++;
            [weakSelf loadingData];
        }];
    }
    return _tableView;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    CourseAnswerModel *model = [(CourseAnswerModel *)[self.answerArray objectAtIndex:indexPath.section] childList][indexPath.row];
    HuCourseExchangeCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIdentifier forIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.model = model;
    return cell;
}

2.模块化后
xib文件路径修改了,放到Assets里面(pod之后就会在Resources显示 )


image.png

image.png

使用:

-(UITableView *)tableView{
    if (!_tableView) {
        _tableView = [[UITableView alloc] init];
        _tableView.frame = CGRectMake(0, 0, HHBWIDTH, HHBHEIGHT - nav_height);
        NSBundle *bundle = [NSBundle wg_subBundleWithBundleName:HuDiscoveryKit targetClass:[self class]];
        [_tableView registerNib:[UINib nibWithNibName:@"HuCourseExchangeCell" bundle:bundle] forCellReuseIdentifier:kCellIdentifier];
        
        _tableView.delegate = self;
        _tableView.dataSource = self;
        _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        _tableView.tableFooterView = [UIView new];
        [self.view addSubview:_tableView];
        WS(weakSelf);
        [HuTableViewRefresh tableViewRefresh:_tableView success:^(refreshType refresh) {
            refresh == TableViewHeaderRefresh ? weakSelf.pageNum = kPageNum: weakSelf.pageNum++;
            [weakSelf loadingData];
        }];
    }
    return _tableView;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    CourseAnswerModel *model = [(CourseAnswerModel *)[self.answerArray objectAtIndex:indexPath.section] childList][indexPath.row];
    HuCourseExchangeCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIdentifier forIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.model = model;
    return cell;
}

//扩展方法
#import <Foundation/Foundation.h>
@interface NSBundle (wgSubBundle)
+ (instancetype)wg_subBundleWithBundleName:(NSString *)bundleName targetClass:(Class)targetClass;
@end

#import "NSBundle+wgSubBundle.h"
@implementation NSBundle (wgSubBundle)
+ (instancetype)wg_subBundleWithBundleName:(NSString *)bundleName targetClass:(Class)targetClass{
    //并没有拿到子bundle
    NSBundle *bundle = [NSBundle bundleForClass:targetClass];
    //在这个路径下找到子bundle的路径
    NSString *path = [bundle pathForResource:bundleName ofType:@"bundle"];
    //根据路径拿到子bundle
    return path?[NSBundle bundleWithPath:path]:[NSBundle mainBundle];
    
    /*
     这种方式也可以
     NSBundle *bundle = [NSBundle bundleForClass:targetClass];
     NSURL *url = [bundle URLForResource:bundleName withExtension:@"bundle"];
     return path?[NSBundle bundleWithURL:url]:[NSBundle mainBundle];
     */
}
@end

2.1注意点,因为DiscoverAnswerIcon.png 这个图片是在xib使用了,如果我们还将改图片放在主工程,运行的时候,图片还是不会显示的,需要将它和xib文件放一起


image.png

3.常用例子

xib
1.有bundle参数的修改
[_tableView registerNib:[UINib nibWithNibName:@"QuestionAnswerTableViewCell" bundle:bundle] forCellReuseIdentifier:kCellIdentifier];
cell = [[bundle loadNibNamed:@"TrainingCourseDetailTableViewCell" owner:self options:nil] firstObject];

或者
HuShareCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIdentifier];
    if (!cell) {
        NSBundle *bundle = [NSBundle wg_subBundleWithBundleName:@"HuDiscoveryKit" targetClass:[self class]];
        cell = [[bundle loadNibNamed:@"HuShareCell" owner:nil options:nil]firstObject];
    }

2. 没有budle参数的修改
- (instancetype)init{
    NSBundle *bundle = [NSBundle wg_subBundleWithBundleName:@"HuHealtheducationKit" targetClass:[self class]];
    if (self = [super initWithNibName:@"HuIllnessDefaultViewController" bundle:bundle]) {
        
    }
    return self;
}

二.图片问题处理,(如果开发资源充沛,建议还是将各个库的图片放到各个库去)
1.由于项目较多,我们就没有将所有图片放到各自库去,默认都放在主工程里面(除了上面那种xib不显示图片问题)
还是用原来的用法

_errImage.image = [UIImage imageNamed:@"icon_error-circle"];

2.如果你要放到对应库里面,用法就要修改了

//NSBundle *bundle = [NSBundle wg_subBundleWithBundleName:@"HuHealtheducationKit" targetClass:[self class]];
NSString *bundleName =  @“HuHealtheducationKit";
_videoDefaultView.image = [UIImage hu_imgWithName:@"icon_error-circle" bundle:bundleName targetClass:[self class]];
//扩展
#import <UIKit/UIKit.h>
@interface UIImage (HuBundle)
+ (instancetype)hu_imgWithName:(NSString *)name bundle:(NSString *)bundleName targetClass:(Class)targetClass;
@end
#import "UIImage+HuBundle.h"
@implementation UIImage (HuBundle)
+ (instancetype)hu_imgWithName:(NSString *)name bundle:(NSString *)bundleName targetClass:(Class)targetClass{
    NSInteger scale = [[UIScreen mainScreen] scale];
    NSBundle *curB = [NSBundle bundleForClass:targetClass];
    NSString *imgName = [NSString stringWithFormat:@"%@@%zdx.png", name,scale];
    NSString *dir = [NSString stringWithFormat:@"%@.bundle",bundleName];
    NSString *path = [curB pathForResource:imgName ofType:nil inDirectory:dir];
    return path?[UIImage imageWithContentsOfFile:path]:nil;
}
@end

3.补充
2018年10月19日
1.组件里面做图片库的两种方式


image.png

image.png
#define ZFPlayerSrcName(file)               [@"ZFPlayer.bundle" stringByAppendingPathComponent:file]
#define ZFPlayerFrameworkSrcName(file)      [@"Frameworks/HuZFPlayer.framework/ZFPlayer.bundle" stringByAppendingPathComponent:file]
#define ZFPlayerImage(file)                 [UIImage imageNamed:ZFPlayerSrcName(file)] ? :[UIImage imageNamed:ZFPlayerFrameworkSrcName(file)]

第二种方法


image.png

如果您发现本文对你有所帮助,如果您认为其他人也可能受益,请把它分享出去。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容

  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,094评论 1 32
  • 在闺蜜读书会中,我阅读完了《优雅女人最有气质:提升女人气质的72条法则》,说起优雅,前些年我们可能第一时间想到法国...
    七零八零阅读 676评论 0 9
  • 小A从小生活在一个军区大院,过着幸福快乐的生活,爸爸、妈妈、奶奶、爷爷、还有小叔小婶、妹妹,从小就被奶奶宠着的她胖...
    AA国际养生宫富贵阅读 140评论 0 0
  • 一、昨天的会谈 首先我想从昨天的会谈开始谈起。最近的幸福双翼家庭大学正在增加我们的团队成员。昨天晚上我去了...
    王红W阅读 851评论 0 0
  • 已经进入夏季了,整理衣柜发现又没衣服穿了,仿佛去年就是裸着过来的。你是否有这样的感觉呢?我就是这样的人,又要...
    悠悠泡泡阅读 2,690评论 11 52