繁体   English   中英

在Swift中的UIImagePickerController之后,UIImage为nil

[英]UIImage is nil after UIImagePickerController in Swift

当打印出iImage的值时,它说:“ size { 3024,4032 }方向3比例1.000000 ”,但是然后我得到一个错误:“ 致命错误:在下一行解开Optional值时意外发现nil ”。 我刚刚得到的图像怎么能为零?

func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
        let iImage = info[UIImagePickerControllerOriginalImage] as! UIImage
        print(iImage)
        createEvent(iImage)//where it is saved to cloudkit with location and title
        EventPageViewController().eventPic.image = iImage
        self.dismiss(animated: true, completion: nil);
    }

func mapView(_ mapView: MKMapView, annotationView view: MKAnnotationView, calloutAccessoryControlTapped control: UIControl) {

        let eventPageViewController:EventPageViewController = storyboard?.instantiateViewController(withIdentifier: "EventPage") as! EventPageViewController
        self.present(eventPageViewController, animated: true, completion: nil)
    }

func loadEvent(_ completion: @escaping (_ error:NSError?, _ records:[CKRecord]?) -> Void)
    {
        let date = NSDate(timeInterval: -60.0 * 180, since: NSDate() as Date)
        let predicate = NSPredicate(format: "creationDate > %@", date)
        let query = CKQuery(recordType: "Event", predicate: predicate)
        CKContainer.default().publicCloudDatabase.perform(query, inZoneWith: nil){
            (records, error) in
            if error != nil {
                print("error fetching events: \(error)")
                completion(error as NSError?, nil)
            } else {
                print("found events")
                completion(nil, records)
                guard let records = records else {
                    return
                }
                for record in records
                {
                    self.drawEvents(record["LocationF"] as! CLLocation, title1: record["StringF"] as! String)

                    if let asset = record["Picture"] as? CKAsset,
                        let data = NSData(contentsOf: asset.fileURL),
                        let image1 = UIImage(data: data as Data)
                    {
                        //EventPageViewController().eventPic.image = image1
                    }
                }
            }
        }
    }

func drawEvents(_ loc: CLLocation, title1: String)
    {
        mapView.delegate = self
        let center = CLLocationCoordinate2D(latitude: loc.coordinate.latitude, longitude: loc.coordinate.longitude)
        let lat: CLLocationDegrees = center.latitude
        let long: CLLocationDegrees = center.longitude
        self.pointAnnotation1 = MKPointAnnotation()
        self.pointAnnotation1.title = title1
        self.pointAnnotation1.subtitle = "Event"
        self.pointAnnotation1.coordinate = CLLocationCoordinate2D(latitude: lat, longitude: long)

        self.pinAnnotationView = MKPinAnnotationView(annotation: self.pointAnnotation1, reuseIdentifier: nil)
        self.mapView.addAnnotation(self.pinAnnotationView.annotation!)
    }

这是因为您要在EventPageViewController()中创建ViewController的新实例。 如果此委托方法在EventPageViewController ,则可以调用self.eventPic.image = iImage

看起来eventPic是一个UIImageViewIBOutlet 因此,您的EventPageViewController实例尚未完成加载其视图并连接插座。

您应该在EventPageViewController具有UIImage属性。

class EventPageViewController {
  var eventImage: UIImage?
  @IBOutlet var eventPic:UIImageView! //you should have better name like eventImageView

  func viewDidLoad() {
    super.viewDidLoad()
    eventPic?.image = eventImage
    ///rest goes here
  }
}

因此,从您的选择器委托中,您可以像这样访问:

let eventPageViewController = EventPageViewController()
eventPageViewController.eventImage = iImage

希望这可以帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM