I am currently using a container view and I want to change the value of parent view controller imageView through child view controller using delegates, but it always returns nil.
import UIKit
protocol updateImage {
func userIsDone(image:UIImage)
}
class ViewController: UIViewController, updateImage{
@IBOutlet weak var imageView:UIImageView!
var image = UIImage(named: "hello.png")
override func viewDidLoad() {
super.viewDidLoad()
self.imageView.image=self.image
}
func userIsDone(image: UIImage) {
self.image=image
}
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if segue.identifier == "containerChild"{
let nextView = segue.destinationViewController as! ControllerChild
nextView.image=self.image
nextView.delegate=self
}
}
}
class ControllerChild:UIViewController{
var image=UIImage(named: "newhello.png")
var delegate: updateImage? = nil
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func changeImage(sender:UIButton){
if(delegate != nil){
self.delegate!.userIsDone(self.image!)
print("I am Called!")
}
}
}
Remove this line:
And change the
userIsDonefunction to:As side notes:
selfoutside of blocks/closures. For example, you don't need toself.imageView.image = self.image-- justimageView.image = imagewill do.UpdateImage(instead ofupdateImage)..pngto reference images, just the title, E.g.:"hello".Apple describes Swift code conventions in their awesome Swift book.
Here is the code, refactored (Swift 3):