我正在试图弄清楚如何使用存储在iPhone相机胶卷上的图像填充图像查看器。我正在考虑使用以下代码:
@IBOutlet weak var imageoutlet: UIImageView! //remove the weak
override func viewDidLoad() {
super.viewDidLoad()
imageoutlet.image = UIImage(named:"IMG_0031.JPG")
// Do any additional setup after loading the view, typically from a nib.
}
作为使用名为“IMG_0031.JPG”的图像填充图像查看器对象(称为imageoutlet)的方法。我试过这样做但不幸的是它没有用。如果有人能给我一些关于访问和填充存储在iPhone相机胶卷上的图像的好方法的建议,我将非常感激。谢谢!