zoukankan      html  css  js  c++  java
  • iOS学习-UIBundle

    //
    //  ViewController.m
    //  NSBundle详解
    //
    //  Created by 大欢 on 16/1/20.
    //  Copyright © 2016年 bjsxt. All rights reserved.
    //

    #import "ViewController.h"

    @interface ViewController ()

    @end

    @implementation ViewController

    - (void)viewDidLoad {
        [super viewDidLoad];
        
        //束,目录
        NSString * string = [NSBundle mainBundle].bundlePath;
        NSLog(@"%@",string);
        
        //Resource:文件名
        //ofType:文件名后缀
        //inDirectory:Bundle下的目录
        
        
        NSString * path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"plist"];
        
        NSString * path2 = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"plist" inDirectory:@"image"];
        
        NSArray * array = [NSArray arrayWithContentsOfFile:path2];
        
        NSLog(@"%@",array);
    }

    - (void)didReceiveMemoryWarning {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }

    @end
    /***************************************************/

  • 相关阅读:
    深入js——this
    深入js——作用域链
    深入js——变量对象
    深入js——执行上下文栈
    vue为什么不能检测数组的变化
    常用的文件下载方式
    vue中修改第三方组件的样式不生效
    Neo4j 学习笔记2
    Neo4j 学习笔记1
    idea git 命令
  • 原文地址:https://www.cnblogs.com/MrWuYindi/p/5146720.html
Copyright © 2011-2022 走看看