- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试像照片应用程序那样做一个自定义 pinView:
到目前为止,我可以在 SO 或 here 上找到的大多数资源和 here显示自定义图钉图像或标注 View 的方法,但在标记本身的自定义 View 上没有。
最终,我想要实现的类似于照片应用程序,其中显示在标记本身上的每个图像都是用户的个人资料图像,而是一个圆形 View 。到目前为止,我的代码非常基本:
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
var annotationView = mapView.dequeueReusableAnnotationView(withIdentifier: "pin") as? MKMarkerAnnotationView
if annotationView == nil {
annotationView = MKMarkerAnnotationView(annotation: annotation, reuseIdentifier: "pin")
annotationView?.canShowCallout = true
annotationView?.leftCalloutAccessoryView = UIImageView(image: UIImage(named: "profileImage"))
} else {
annotationView?.annotation = annotation
}
return annotationView
}
最佳答案
您可以实现任何您想要的自定义设计,您只需要提供一个名为 viewFor 的委托(delegate)方法。
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
var pinView = mapView.dequeueReusableAnnotationView(withIdentifier: "pin", for: annotation)
pinView = MapPinView(annotation: annotation, reuseIdentifier: "pin")
return pinView
}
在 viewDidload 方法中,将 mapview 委托(delegate)设置为 self,当然还可以像下面这样注册您的自定义 View 。
override func viewDidLoad() {
super.viewDidLoad()
mapView.delegate = self
mapView.register(MapPinView.self, forAnnotationViewWithReuseIdentifier: "pin")
}
自定义 View 可能看起来像这样。
import MapKit
class MapPinView: MKAnnotationView {
private lazy var containerView: UIView = {
let view = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
view.backgroundColor = .white
view.layer.cornerRadius = 16.0
return view
}()
private lazy var imageView: UIImageView = {
let imageview = UIImageView()
imageview.translatesAutoresizingMaskIntoConstraints = false
imageview.image = UIImage(named: "bg")
imageview.layer.cornerRadius = 8.0
imageview.clipsToBounds = true
return imageview
}()
private lazy var bottomCornerView: UIView = {
let view = UIView()
view.translatesAutoresizingMaskIntoConstraints = false
view.backgroundColor = .white
view.layer.cornerRadius = 4.0
return view
}()
// MARK: Initialization
override init(annotation: MKAnnotation?, reuseIdentifier: String?) {
super.init(annotation: annotation, reuseIdentifier: reuseIdentifier)
setupView()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func setupView() {
containerView.addSubview(bottomCornerView)
bottomCornerView.topAnchor.constraint(equalTo: containerView.bottomAnchor, constant: -15.0).isActive = true
bottomCornerView.centerXAnchor.constraint(equalTo: containerView.centerXAnchor).isActive = true
bottomCornerView.widthAnchor.constraint(equalToConstant: 24).isActive = true
bottomCornerView.heightAnchor.constraint(equalToConstant: 24).isActive = true
let angle = (39.0 * CGFloat.pi) / 180
let transform = CGAffineTransform(rotationAngle: angle)
bottomCornerView.transform = transform
addSubview(containerView)
containerView.addSubview(imageView)
imageView.leadingAnchor.constraint(equalTo: containerView.leadingAnchor, constant: 8.0).isActive = true
imageView.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 8.0).isActive = true
imageView.trailingAnchor.constraint(equalTo: containerView.trailingAnchor, constant: -8.0).isActive = true
imageView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: -8.0).isActive = true
}
}
我的看起来像这样。
关于swift - 自定义 MKMarkerAnnotationView Like Photos App,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48487846/
2015 年 5 月 28 日发布的 Google 照片应用是否有允许上传照片的 API?该应用程序似乎是建立在 Picassa 和 Google+ 之上的。他们的 API 之一可以用于上传到 Goo
我正在尝试使用 API 读取全分辨率视频的链接 Google Photos API documentation . 它说 concatenate the base URL in the followi
即使完全访问该程序,似乎也没有任何方法可以删除创建的照片或相册。 删除支持对于完成照片 API 至关重要。缺乏删除功能确实限制了 API 的实用性。 能够创建东西但要求用户手动删除它们是不好的。 我是
我的应用程序遇到问题,该应用程序与照片相关, 在我的应用程序中,我需要通过 Photo.app 删除的照片网址,有什么方法可以在我们的应用程序中找到在 photo.app 中删除的照片 提前致谢。 最
一些现代智能手机允许您拍摄实际上是简短无声视频的照片(几秒钟长): 苹果调用此功能 Live Photos 一些 谷歌像素 手机有一个功能叫 motion photos . 谷歌研究 还发布了一个名为
我在下面的代码中得到一个 flickrapi.exceptions.FlickrError: Error: 1: Photo not found 异常,在这一行: sizes_element = s
我的想法是创建一个像 whatsapp 那样的半透明 View 。 1) 我在 ImageView 上有一个点击手势。 2)当我点击 ImageView 时,会出现一层像whatsapp这样的透明 V
我想使用 REST Google Photos API 从 Goolge Photos 下载原始照片或视频,但我发现无法通过“baseUrl”实现。 我已经检查了以下页面,但没有确定的答案: http
我正在使用 Magento 网站,我是 Magento 的新手,所以请多多包涵。我本来asked this question in the Magento community ,但他们告诉我这是题外话
我需要在 iOS 的 Photo Booth Mac 应用程序中显示 Photo Flash 动画。 如何做到这一点? 最佳答案 Photo Booth for Mac 中的“闪光灯”只是一个白色表面
我想创建一个条件包含,具体取决于 OpenCV 版本。实际上我在 2 个不同的平台上编译相同的源代码。我正在 Ubuntu 14 中开发,我想在 Raspberry PI 中运行我的应用程序。我遇到的
请帮助,我已经成功地通过 iphone 的相机访问和捕获照片。但问题是当我通过“loadFilePromise”加载它时,照片旋转方向错误。 import flash.media.CameraUI;
是否可以在 JavaFX 中创建类似于 Google map 中的 photoshpere 的光球?如果是,如何? 最佳答案 答案是肯定的,您可以在 JavaFX 中创建光球。 至于方法,有一个基于
This question has been asked before但是没有针对 Swift 3 的答案。我正在寻找与过去 3 周一样的解决方案。 我已经完成研究并观看了大量关于使用 UIImage
当用户单击某个按钮时,我希望他能够在拍照和从图库中选择图片之间进行选择。截至目前,它似乎是其中之一。我应该为此创建两个按钮还是有更好的方法来完成这个?我希望有一种点击按钮的方式,iOS 将在 nati
此代码在 iOS 7 中运行良好,但在 iOS 8.1 中,位于“我的照片流”相册中的所有 Assets 在结果 block 中都为零。 (不调用 failureBlock。)普通相册和共享相册工作正
我试过查询状态、喜欢、照片,一切正常。 但是当我在字符串的末尾添加一个限制“?limit=100”时,我从响应对象中得到错误类型:OAuthException,errorMessage:必须使用 Ac
我想做一个应用程序,在按下按钮时从当前主 UIImageView 保存图像并将其保存到相册。 我的程序所做的是在我按下“保存到相册”按钮后显示错误。可能是我的代码结构不对。或者谁能告诉我正确的代码
我使用 UIImagePickerController 让用户选择要在应用程序中共享的照片或视频。当用户在其库中选择媒体项时,我在 UIImagePickerController 的委托(delega
在ios 11中引入了名为“Add photos only”的新照片访问权限,要实现这个选项我们需要在plist中添加“Privacy - Photo Library Additions Usage
我是一名优秀的程序员,十分优秀!