UIImage不一樣環境下的幾種建立方式

 

        //UIImage就是一個圖片  本身不能顯示  必須依託其餘空間顯示圖片

    //建立的經常使用3種方法內存

    //1 圖片較小可以使用此種方法 此方法建立的圖片會一直駐留在內存中it

    UIImage * img1=[UIImage imageNamed:@"1.png"];file

    

    //2 圖片較大可使用此方法  從文件中獲取一個圖片方法

   UIImage *img2=[[UIImage alloc]initWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"2" ofType:@"png"]];im

    

    //3 獲取路徑 把圖片讀取到DATA中 在把DATA的內容給圖片設置上img

    NSString *filePath=[[NSBundle mainBundle]pathForResource:@"3" ofType:@"png"];文件

    

    NSData *data=[[NSData alloc]initWithContentsOfFile:filePath];data

    

    UIImage *img3=[[UIImage alloc]initWithData:data];path

相關文章
相關標籤/搜索