NSBundle

作者: 灬大象大象 | 来源:发表于2016-02-25 23:18 被阅读0次

    NSBundle

    作用:用来访问与之对应的资源包内部的文件,可以用来获得文件的全路径

    一个NSBundle对象对应一个资源包(图片,音频,视频,plist等文件)

    项目中添加的资源都会被添加到主资源包中:[NSBundle mainBundle]

    NSBundle *bundle = [NSBundle mainBundle];
    NSString *file = [bundle pathForResource:@"shops" ofType:@"plist"];
    self.shops = [NSArray arrayWithContentsOfFile:file];
    

    相关文章

      网友评论

        本文标题:NSBundle

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