Hi I came along this problem can someone solve this for me?
unichar aChar7 = [textview.text characterAtIndex:0];
if (aChar7 == 'A' ){
[imageview7 setImage: @"BLUEBOXA.png"];
It says
Incompatible pointer types sending ‘NSString *’ to parameter of type ‘UIImage *’
thanks
the UIImageView “setImage” takes a UIImage type as the parameter. So you need to make a UIImage instance first. Do this:
Hope that helps!