I have a app which has an Apple Watch extension. I have a UIImageView in the Watch face and would like to have the image change depending on condition. I have tried this.
if ((battery > 30)&& (battery < 110) && (bat = 1)){
UIImage *lightning = [UIImage imageNamed:@"jag2@2X.png"];
[self.Jag setImage:lightning];
}
I have put the jag@@2x.png in my watch asserts folder but when I call this it doesn't load no image appears. If I load it in IB it is ok any ideas?