gpt4 book ai didi

iphone - 我怎样才能避免来自 AlassetLibrary 的位置服务?

转载 作者:可可西里 更新时间:2023-11-01 03:31:28 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
How can i avoid Location service in AlAssetLibrary? Can i retrieve files using AlAssetLibrary without using Location Service?

大家好, 我是 iphone 开发和 obj-c 的新手。我在我的应用程序中使用“ALAssetLibrary”从照片库中检索图像。我确定“ALAssetPropertyLocation”属性键仅在为调用方启用定位服务时可用。它是检索 Assets 位置信息的关键。但我没有使用“ALAssetPropertyLocation”属性。我只使用ALAssetPropertyURLs。

每当我尝试在新设备中部署我的应用程序时,都会出现一个消息框,其中包含消息“需要定位服务......”我可以隐藏“ALAssetPropertyLocation”属性吗?

如果有人能以正确的方式帮助我解决我的问题,并在可能的情况下提供任何示例代码来帮助我入门,我将不胜感激。

提前致谢:)

这是我的代码:

//Getting image url from dictionary according to the user input
NSURL *imageurl = [dict objectForKey: [youSaid text]];

//Getting asset from url
typedef void (^ALAssetsLibraryAssetForURLResultBlock)(ALAsset *asset);
typedef void (^ALAssetsLibraryAccessFailureBlock)(NSError *error);
ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)
{
ALAssetRepresentation *rep = [myasset defaultRepresentation];
CGImageRef iref = [rep fullResolutionImage];
//Setting asset image to image view according to the image url
[imageview setImage:[UIImage imageWithCGImage:iref]];
};
ALAssetsLibraryAccessFailureBlock failureblock = ^(NSError *myerror)
{
NSLog(@"Error, cant get image - %@",[myerror localizedDescription]);
};

if(imageurl != nil)
{
ALAssetsLibrary *assetLibrary=[[ALAssetsLibrary alloc] init];
[assetLibrary assetForURL:imageurl resultBlock:resultblock failureBlock:failureblock];
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com