gpt4 book ai didi

ios - 没有添加个人资料图片时的警报 View (Swift)

转载 作者:行者123 更新时间:2023-11-28 07:02:35 25 4
gpt4 key购买 nike

我是编程新手,在这里需要一些帮助我添加了一个 UIImage 供用户添加他们的图片。我希望每个用户都必须包含一张图片才能注册。

if (user does not include picture empty) <--- code here  {

var alert = UIAlertController(title: "Warning", message: "you need to add profile picture", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title:"ok", style:UIAlertActionStyle.Default, handler:nil))
self.presentViewController(alert, animated: true, completion: nil)
}

谢谢。

最佳答案

如果 imageView 是否为 nil,您可以通过这种方式检查:

if yourImageView.image == nil {

var alert = UIAlertController(title: "Warning", message: "you need to add profile picture", preferredStyle: UIAlertControllerStyle.Alert)

alert.addAction(UIAlertAction(title: "ok", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(alert, animated: true, completion: nil)
}

关于ios - 没有添加个人资料图片时的警报 View (Swift),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31695259/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com