使用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];