美文网首页
Objec-C访问图片网页资源 frameWork

Objec-C访问图片网页资源 frameWork

作者: 不要虚度美好的时光 | 来源:发表于2018-01-11 23:09 被阅读0次

1. 添加资源图片

2. 获取图片:

[UIImage imageNamed:@"navigationbarBackgroundWhite" inBundle:_bundleImage compatibleWithTraitCollection:nil]

@interface VideoChatNavigationController (){

    NSBundle *_bundleImage;

}

@end

@implementation VideoChatNavigationController

- (void)viewDidLoad {

    [super viewDidLoad];

    _bundleImage = [NSBundle bundleForClass:[self class]];

    self.interactivePopGestureRecognizer.delegate = self;

    [self.navigationBar setBackgroundImage:[UIImage imageNamed:@"navigationbarBackgroundWhite" inBundle:_bundleImage compatibleWithTraitCollection:nil] forBarMetrics:UIBarMetricsDefault];

}

相关文章

网友评论

      本文标题:Objec-C访问图片网页资源 frameWork

      本文链接:https://www.haomeiwen.com/subject/ifhxoxtx.html