如何将变量分配给 Swift 中的 UIInteraction?
How can a variable be assigned to a UIInteraction in Swift?
为什么需要变量?因为单元格中2次不同的长按,需要调用2张图片func contextMenuInteraction
下面是我的代码,我在其中为每个长按交互分配了一个变量。我收到错误 Thread 1: Swift runtime failure: Unexpectedly found nil while implicitly unwrapping an Optional value
//范围内
var dd : UIInteraction!
var cc : UIInteraction!
@IBOutlet weak var immy: UIImageView!
//分别覆盖func awakeFromNib()和一个objC长按函数
immy.addInteraction(dd) // (this is in the override nib)
self.like.addInteraction(self.cc) //(this is in the @objc func didLongPress())
下面是调用 2 个交互的 func ContextMenuInteraction
func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? {
UIContextMenuConfiguration(identifier: nil, previewProvider: {
if self.dd as! NSObject == interaction {
if let unwrappedImage = self.immy.image {
return ImagePreviewController(image:unwrappedImage)
}
else {
return nil
}
// put dd stuff here
} else if self.cc as! NSObject == interaction {
// put cc stuff here
let image3 = UIImage(named:"ring-309550-2.png")
if let unwrappedImage1 = image3 {
return ImagePreviewController(image:unwrappedImage1)
}
else {
return nil
}
}
else {
return nil
}
})
}
unexpected found nil 的错误发生在哪里 - 在这一行:
immy.addInteraction(dd)
更新此问题已解决(不是我 - reddit 上的某个人)
// scope
var dd: UIContextMenuInteraction
var cc: UIContextMenuInteraction
// inside init()
self.dd = UIContextMenuInteraction(delegate: self)
self.cc = UIContextMenuInteraction(delegate: self)
// downstream
image1.addInteraction(dd)
image2.addinteraction(cc)
// inside contextMenuInteraction()
if self.dd == interaction {
...
} else if self.cc == interaction {
...
}
为什么需要变量?因为单元格中2次不同的长按,需要调用2张图片func contextMenuInteraction
下面是我的代码,我在其中为每个长按交互分配了一个变量。我收到错误 Thread 1: Swift runtime failure: Unexpectedly found nil while implicitly unwrapping an Optional value
//范围内
var dd : UIInteraction!
var cc : UIInteraction!
@IBOutlet weak var immy: UIImageView!
//分别覆盖func awakeFromNib()和一个objC长按函数
immy.addInteraction(dd) // (this is in the override nib)
self.like.addInteraction(self.cc) //(this is in the @objc func didLongPress())
下面是调用 2 个交互的 func ContextMenuInteraction
func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? {
UIContextMenuConfiguration(identifier: nil, previewProvider: {
if self.dd as! NSObject == interaction {
if let unwrappedImage = self.immy.image {
return ImagePreviewController(image:unwrappedImage)
}
else {
return nil
}
// put dd stuff here
} else if self.cc as! NSObject == interaction {
// put cc stuff here
let image3 = UIImage(named:"ring-309550-2.png")
if let unwrappedImage1 = image3 {
return ImagePreviewController(image:unwrappedImage1)
}
else {
return nil
}
}
else {
return nil
}
})
}
unexpected found nil 的错误发生在哪里 - 在这一行:
immy.addInteraction(dd)
更新此问题已解决(不是我 - reddit 上的某个人)
// scope
var dd: UIContextMenuInteraction
var cc: UIContextMenuInteraction
// inside init()
self.dd = UIContextMenuInteraction(delegate: self)
self.cc = UIContextMenuInteraction(delegate: self)
// downstream
image1.addInteraction(dd)
image2.addinteraction(cc)
// inside contextMenuInteraction()
if self.dd == interaction {
...
} else if self.cc == interaction {
...
}