无法安装“GSImageViewerController Pod”并且无法在项目中快速使用其代码
Posted
技术标签:
【中文标题】无法安装“GSImageViewerController Pod”并且无法在项目中快速使用其代码【英文标题】:Unable to to install "GSImageViewerController Pod" and unable to use its code in project in swift 【发布时间】:2020-10-27 13:59:13 【问题描述】:我需要全屏点击图像,因为其中一位开发人员建议GSImageViewerController pod..
如果我只像 pod "GSImageViewerController"
这样安装 pod,并且在我的项目中的 swift 文件中“导入 GSImageViewerController”
就像文档说我写在下面的代码
import UIKit
import GSImageViewerController
class ViewController: UIViewController
@IBOutlet weak var tapImage: UIImageView!
override func viewDidLoad()
super.viewDidLoad()
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(imageTapped(tapGestureRecognizer:)))
tapImage.isUserInteractionEnabled = true
tapImage.addGestureRecognizer(tapGestureRecognizer)
@objc func imageTapped(tapGestureRecognizer: UITapGestureRecognizer)
let imageInfo = GSImageInfo(image: tapImage.image!, imageMode: .aspectFit)
let imageViewer = GSImageViewerController(imageInfo: imageInfo)
navigationController?.pushViewController(imageViewer, animated: true)
对于 imageview 控制器,我添加了 navigationcontroller.. 所以在这里如果我点击图像,然后图像会全屏显示.. 但就像文档中所说的,如果我点击屏幕上的任何地方或拖出图像,那么我就是无法回到原来的位置为什么??我哪里错了???请帮忙
【问题讨论】:
【参考方案1】:您应该使用present
而不是push
。下面是我项目中的一个工作示例。
let imageInfo = GSImageInfo(image: profileImageView.image!, imageMode: .aspectFit)
let transitionInfo = GSTransitionInfo(fromView: profileImageView)
let imageViewer = GSImageViewerController(imageInfo: imageInfo, transitionInfo: transitionInfo)
present(imageViewer, animated: true, completion: nil)
【讨论】:
我们不能在 tableviewcell 中使用它吗?,我的个人资料 img 在单元格中 如果我正在尝试let cell = tableView.dequeueReusableCell(withIdentifier: "cell") let imageInfo = GSImageInfo(image: (cell?.imageView?.image)!, imageMode: .aspectFit)
。在选择器函数中。有错误。 Fatal error: Unexpectedly found nil while unwrapping an Optional value:
您需要获取当前单元格,而不是创建新实例。 let cell = tableView.cellForRowAtIndexpath ... 使用那个.. 在网上搜索,你会找到答案以上是关于无法安装“GSImageViewerController Pod”并且无法在项目中快速使用其代码的主要内容,如果未能解决你的问题,请参考以下文章
Chrome浏览器无法打开,安装程序也无法启动不能重新安装,啥原因?