我嘗試使用下面的代碼保存圖像從我的應用程序的照片相冊:我怎麼可以簡單地使用發展觀在我的應用程序
-(void)download:(UIButton *)downloadbtn{
j=320*downloadbtn.tag;
selectedIndex=downloadbtn.tag;
NSData *data=[NSData dataWithContentsOfURL:[NSURL URLWithString:[live_god_img objectAtIndex:selectedIndex]]];
UIImage*img=[UIImage imageWithData:data];
UIImageWriteToSavedPhotosAlbum(img, self, nil, nil);
UIAlertView*alert=[[UIAlertView alloc]initWithTitle:@"Success..!" message:@"Image Saved to the Photos" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
[alert show];
}
當圖像保存到相冊上,警報視圖會顯示,但我想在圖像保存到相冊時顯示進度視圖。我不知道如何使用UIProgressView
。我該怎麼做?
你不能,除非你的下載操作是異步的。由於您的代碼目前正在寫入(同步),因此無法執行此操作。 – Cyrille 2015-02-23 14:14:03