iPhone 地图视图上的远程 pinimage
我想在我的地图视图上将远程图像显示为图钉我尝试过这种方式,但这不起作用
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
imageNamed 从本地应用程序包中获取一个文件。
你想要的:
我不建议这样做,因为它会阻塞主 UI 线程。您应该考虑首先异步加载引脚的图像数据。
imageNamed takes a file from your local application bundle.
You want:
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.