虽然我正在触摸UIButton
如何使它不突出显示。但是,我不想完全避开突出显示的功能。我只想在开始拖动时使突出显示的停止。我试过这个
-(IBAction)stopHighlighting:(UIButton *)sender// i hooked this up to IB for touchDragInside
{
sender.highlighted=NO;
//this doesnt work at all
}
虽然我正在触摸UIButton
如何使它不突出显示。但是,我不想完全避开突出显示的功能。我只想在开始拖动时使突出显示的停止。我试过这个
-(IBAction)stopHighlighting:(UIButton *)sender// i hooked this up to IB for touchDragInside
{
sender.highlighted=NO;
//this doesnt work at all
}