とに をUIButton
配置しました。ボタンを押すと画像が表示され、テキストの色が変更され、指を引き上げると画像が消えてテキストの色が黒に戻ります。UIImageView
UILabel
UIImageView
UILabel
UILabel
- (void)highlightActivity:(id)sender {
activityImage.image = [UIImage imageNamed:[[NSMutableString alloc] initWithString:activityName]];
activityLabel.textColor = activityColor;
}
- (void)deHighlightActivity:(id)sender {
activityLabel.textColor = [UIColor blackColor];
activityImage.image = nil;
}
ボタンを押して離すと問題なく動作しますが、ボタンをタップすると問題が発生し、画像がまったく表示されず、テキストの色が変わりません。
タップしたときにそれを実現する方法はありますか?
ありがとう、ナオル。