// ---
NSURL *image_url = [NSURL URLWithString:@"http://dn.monster.tw/pub/globe.png" ];
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:image_url]];
myImageView.image = image;
UIImageWriteToSavedPhotosAlbum(image, [self saveSuccess] , nil, nil);
// ---