はUIButton次のコードとして設定されます。
UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 27, 27)];
[btn setBackgroundImage:[UIImage imageNamed:@"imgUp.png"] forState:UIControlStateNormal];
[btn setBackgroundImage:[UIImage imageNamed:@"imgDown.png"] forState:UIControlStateHighlighted];
[btn addTarget:self action:@selector(btnPressed:) forControlEvents:UIControlEventTouchUpInside];
btwすばやくタッチすると、imgDown.pngは表示されませんが、アクションbtnPressed:が実行されます。どうすれば修正できますか?どんな助けでもありがたいです:)