URLを使用して画像を表示するUIImageViewがあります.UIActionSheetを表示するダウンロードボタンがあり、URLを使用してファイルをダウンロードします.NSURLConnectionを使用してダウンロード部分のコーディングを行う方法を知りたい.
- (IBAction)DownloadClick:(id)sender {
UIActionSheet *Action = [[UIActionSheet alloc]
initWithTitle:@"Options"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:nil
otherButtonTitles:@"Download", nil];
[Action showInView:self.view];
}
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 0) { //The Download code will go here This is where i need ur help
}
URL は「Url」という名前の文字列に保存されます。