私はiPad用のiOSアプリを開発しており、カメラロールからの画像に加えて、InstagramやFlickerなどのさまざまなサービスから画像を取得するために、Grabkitというリポジトリを使用しています。問題は、ユーザーが取得したロールから画像を選択し、次のような URL を選択したときです。この種のパスから画像を取得するためのコードですが、次のように誰も機能していません。
ALAssetsLibrary* library = [[ALAssetsLibrary alloc] init];
// Ask for the "Asset" for the URL. An asset is a representation of an image in the Photo application.
[library assetForURL:originalImage.URL
resultBlock:^(ALAsset *asset) {
// Here, we have the asset, let's retrieve the image from it
CGImageRef imgRef = [[asset defaultRepresentation] fullResolutionImage];
/* Instead of the full res image, you can ask for an image that fits the screen
CGImageRef imgRef = [[asset defaultRepresentation] fullScreenImage];
*/
// From the CGImage, let's build an UIImage
imatgetemporal = [UIImage imageWithCGImage:imgRef];
} failureBlock:^(NSError *error) {
// Something wrong happened.
}];
私のコードに何か問題がありますか? 別のコードを試す必要がありますか?