程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> uiimageview-UIImageView不加載圖片

uiimageview-UIImageView不加載圖片

編輯:編程綜合問答
UIImageView不加載圖片

使用ImageView從url加載圖片失敗:

   pdfView.hidden=NO;
   webView.hidden=NO;
   pictureImageView.hidden=NO;
  pdfView.backgroundColor=[UIColor clearColor];
  doneButton = [[UIBarButtonItem alloc]initWithTitle:@" Done " style:UIBarButtonItemStyleBordered target:self action:@selector(doneButtonClick)];            
  self.navigationItem.leftBarButtonItem =doneButton;
  webView.backgroundColor=[UIColor clearColor];


    NSLog(@"File Name is %@",fileName);

    NSLog(@"Enterning in the ImageSection");

    NSString *ImageURL = fileName;
    NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:ImageURL]];
        pictureImageView.image = [UIImage imageWithData:imageData];  

同時,如果我要從本地讀取也不顯示:

  pictureImageView.image=[UIImage imageNamed:@"starblue.png"];

請高手幫忙,謝謝

最佳回答:


先設置圖片的框架,然後添加圖片到pictureImageView中寫下這行代碼:

        [self.view bringSubviewToFront:pictureImageView];
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved