• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 无法通过当前模态序列将图像传递给另一个 UIViewController

[复制链接]
菜鸟教程小白 发表于 2022-12-11 16:47:08 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我试图将图像传递给目标 UIView 的另一个 imageView,该目标 UIView 连接到源 UIView 超过当前的模态 segue。

我试图通过 segue 传递数据,并通过 Outlet 在源 UIView 中设置图像(即 NSData - 核心数据),但我收到错误 image description 在控制台中 -

"fatal error: unexpectedly found nil while unwrapping an Optional value"

  //Code of destination UIView
   import UIKit
   import CoreData
   class ReviewViewController: UIViewController {

   @IBOutlet var backgroundImageView:UIImageView!
   var subject:Semester!       

    override func viewDidLoad() {
    super.viewDidLoad()
    backgroundImageView?.image = UIImage(data: subject.image!)
    let blurEffect = UIBlurEffect(style: UIBlurEffectStyle.Dark)
    let blurEffectView = UIVisualEffectView(effect: blurEffect)
    blurEffectView.frame = view.bounds
    backgroundImageView.addSubview(blurEffectView)

   // Code of Source UIView
  import UIKit
  import CoreData

  class SubjectDetailViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
  @IBOutlet var facultyImageView:UIImageView!
  var subject:Semester!

  override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if segue.identifier == "destinationidentifier"
    {
            let destinationController = segue.destinationViewController as! ReviewViewController
            destinationController.backgroundImageView?.image = self.facultyImageView.image
     }
}



Best Answer-推荐答案


您的问题是 backgroundImageView 对象为零,因为 destinationController 当前不在 window 层次结构中。

所以像这样改变你的 prepareForSegue

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if segue.identifier == "destinationidentifier"
    {
        let destinationController = segue.destinationViewController as! ReviewViewController
        destinationController.image = self.facultyImageView.image
    }
} 

现在在 ReviewViewController 中创建一个图像对象,如下所示,并在 viewDidLoad

中添加一行
var image: UIImage!

override func viewDidLoad() {
    super.viewDidLoad()
    self.backgroundImageView?.image = self.image
}

希望对你有帮助

关于ios - 无法通过当前模态序列将图像传递给另一个 UIViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37936430/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap