iPhone 地图视图上的远程 pinimage

发布于 2024-11-05 19:14:46 字数 239 浏览 1 评论 0原文

我想在我的地图视图上将远程图像显示为图钉我尝试过这种方式,但这不起作用

annotationView.image = resizedImage;
annotationView.opaque = NO;
UIImageView *sfIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"here the image URL"]];

i want to display remote images as pins on my map view i tried this way but this dont work

annotationView.image = resizedImage;
annotationView.opaque = NO;
UIImageView *sfIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"here the image URL"]];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少情深 2024-11-12 19:14:46

imageNamed 从本地应用程序包中获取一个文件。

你想要的:

UIImageView *sfIconView = [[UIImageView alloc] initWithImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:@"here is the image URL"]]];

我不建议这样做,因为它会阻塞主 UI 线程。您应该考虑首先异步加载引脚的图像数据。

imageNamed takes a file from your local application bundle.

You want:

UIImageView *sfIconView = [[UIImageView alloc] initWithImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:@"here is the image URL"]]];

I don't recommend doing it this way though because it'll block the main UI thread. You should consider loading the image data for your pin asynchronously first.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文