如何检测是否UIImageview
已更改,以及如何显示NSLog
图像何时更改?这是我的代码:
-(void)changePhotoStatus
{
NSArray *myArray = [NSArray arrayWithObjects:[NSString stringWithFormat:@"FasterText.png"],[NSString stringWithFormat:@"Don'tTouchText.png"],nil];
fasttext.image = [UIImage imageNamed:[myArray objectAtIndex:arc4random() % [myArray count]]];
if (fasttext.image == [UIImage imageNamed:@"Don'tToucText.png"]) {
NSLog(@"cahn");
}
}
我NSTimer
用来调用图像的变化。但NSLog
不会出现。请帮忙。