正如问题所示,我正在寻找一种在使用UIActivityViewController时共享当前设备屏幕的方法。到目前为止,这是我的代码。
@IBAction func buttonShareTapped(sender: UIButton) {
let textToShare = "Here's my text to be shared!"
// Generate the screenshot
UIGraphicsBeginImageContext(view.frame.size)
view.layer.renderInContext(UIGraphicsGetCurrentContext())
var image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
var imageToShare = UIImage(named: "\(image)")
if let myWebsite = NSURL(string: "http://mywebsite.com/")
{
let objectsToShare = [textToShare, imageToShare, myWebsite]
let activityViewController = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil)
// Excluded Activities Code
activityViewController.excludedActivityTypes = [UIActivityTypeAirDrop, UIActivityTypeAddToReadingList]
self.presentViewController(activityViewController, animated: true, completion: nil)
}
}
上面的代码从开头Let objectsToShare:
开始产生以下错误 '_' is not convertible to 'UIImage?'
我认为是因为imageToShare目前正在返回nil。
提前致谢。
编辑:在上面的示例中,图像变量返回下面的值,但imageToShare返回nil,所以我猜问题就在那一行。
<UIImage: 0x7ffc85c12f80>, {320, 504}
答案 0 :(得分:1)
也许我的第一条评论对你有帮助,但我会为此添加一点。
如果您确定图像始终是有效对象并且每次都可以解包,那么您可以勇敢地使用它:
var image: UIImage = UIImage(named: "\(image)")!
如果image
为nil
且您要打开它,此解决方案会导致直接崩溃,因此当您100%确定时,您可以执行 image在运行时始终有效;
否则这是正确的方式:
if let image: UIImage = UIImage(named: "\(image)") {
// you have the image unwrapped properly, it can be used for anything.
// ...
}
如果image
无法解包(= nil
),则无法有条件地添加到objectToShare
数组中。
注意:这是一个很好的例子,为什么每次都应明确定义变量的实际类型(var imageToShare: UIImage? = UIImage(named: "\(image)"
),因为你假设它值解包,但它只是可选。
答案 1 :(得分:0)
所以这很奇怪,但我不需要将图像转换为命名的UIImage。当我执行以下操作时,我的代码按预期工作:
if let imageToShare = image {...
然而以下返回nil
if let image: UIImage = UIImage(named: "\(image)") {...
所以我想从UIGraphicsGetImageFromCurrentImageContext()返回的内容不需要进一步转换。