Вопрос

Hi I am getting this error on my code, I have no clue how to fix it . enter image description here

Suggestions and answers would be awesome. Thanks :D

Это было полезно?

Решение 2

Very much understood from the error that you are pointing UIImage to UIImageview that is not compatible. So You need to use the property image of UIImageview as follows:

[editViewController.chosenImage setImage:self.Image];

Другие советы

The correct syntax would be:

editViewController.chosenImage.image = self.Image

All the other answers are correct but it's worth explaining that UIImage is just an object. It is a direct subclass of NSObject. UIImageView is a view (subclass of UIView) that takes a UIImage as one of its properties and displays it.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top