I have an image view in a basic app that I am attempting to set to hidden on load using:
- (void)viewDidLoad
{
my_image.hidden = YES;
}
This code along with some other attribute changes are not functioning at all. I have synthesized the my_image property. Any ideas why this may not be working? Also, please let me know if you need any further information. I’m new to this and it’s really bugging me, so thanks in advance!
It’s hard to make it clear with a simple code line,
my_image.hidden = YES;But I think you can do the things below :
my_image.hidden = NO;somewhere else.