Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

how to set image property

akaash1087akaash1087 Posts: 10Registered Users
I am new to iphone developement.I am actually trying to put an image on my screen.I selected imageview in IB ,dragged it to the screen,created resource folder and put the image file(.png) in it.And it is getting displayed in IB.
When I bind (connect)it in the editor and it creates an IBOutlet UIImageView * myimage type of a variable.In the code i have used the following line

myimage.Image = [UIImage imageNamed:@"Red Apple.png"] ;

(Red Apple is the image)

but it does not work..it gives build error..unexpected bracket..something of that sort.I have searched a lot on web. At a number of places, it says that this is the line that should be added to the code.At one place I read that first a frame should be created using initwithframe and then after that a UIImage should be assigned to Image property.(this is what i have done above)

Any help would be appreciated...

thx akaash
Post edited by akaash1087 on

Replies

  • McCaffersMcCaffers Posts: 48Registered Users
    edited July 2012
    akaash1087;425587 said:
    I am new to iphone developement.I am actually trying to put an image on my screen.I selected imageview in IB ,dragged it to the screen,created resource folder and put the image file(.png) in it.And it is getting displayed in IB.
    When I bind (connect)it in the editor and it creates an IBOutlet UIImageView * myimage type of a variable.In the code i have used the following line

    myimage.Image = [UIImage imageNamed:@"Red Apple.png"] ;

    (Red Apple is the image)

    but it does not work..it gives build error..unexpected bracket..something of that sort.I have searched a lot on web. At a number of places, it says that this is the line that should be added to the code.At one place I read that first a frame should be created using initwithframe and then after that a UIImage should be assigned to Image property.(this is what i have done above)

    Any help would be appreciated...

    thx akaash
    You can't directly set imageView.image = Image.

    Try:
    [imageView setImage:[UIImage imageNamed:@\"Red Apple.png\"]];
Sign In or Register to comment.