iOS學習之NSBundle介紹和使用

來源:互聯網
上載者:User

bundle是一個目錄,其中包含了程式會使用到的資源.這些資源套件含了像,聲音,編譯好的代碼,nib檔案(使用者也會把bundle稱為plug-in).對應bundle,

cocoa提供了類NSBundle.

我們現在用bundle擷取程式裡的一張圖片,並顯示到View上。

 

建立一個Single View Application,並在加入viewDidLoad方法裡加入如下代碼:

 

//    通過使用下面的方法得到程式的main bundle    NSBundle *mainBundle = [NSBundle mainBundle];        NSString *imagePath = [mainBundle pathForResource:@"QQ20120616-1" ofType:@"png"];    NSLog(@"%@", imagePath);    UIImage *image = [[UIImage alloc]initWithContentsOfFile:imagePath];    UIImageView  *imageView = [[UIImageView alloc] initWithImage:image];     [self.view addSubview:imageView];

 

在項目上右鍵,add圖片檔案圖片檔案QQ20120616.png。

運行程式:

列印出來圖片路徑如下

 

/Users/rongfzh/Library/Application Support/iPhone Simulator/5.1/Applications/3B8EC78A-5EEE-4C2F-B0CB-4C3F02B996D2/iOSSandbox.app/QQ20120616-1.png

我們可以看到,圖片在iOSSandbox.app這個包裡,

圖片顯示:


圖片取出來並顯示了。

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.