Is it possible to use the touchesMoved function with buttons instead of UIImageViews?
|
| ||||
|
feedback
|
|
You could certainly find the 'view' that is currently being touch event is dragging over even if it is a button. You could also use the 'touch drag enter' connection for buttons in the Interface Builder. Look at the connections tab by pressing cmd+2 when having selected a button. | |||
|
feedback
|
|
Yes. In your .h file
In your .m file
And finally, in Interface Builder, connect your button to 'aButton' and turn off "User Interaction Enabled" for your button. This is important because it allow touchesMoved to handle it. I have adjusted the code above to check the buttons highlighted state. This is to stop it from firing the button multiple times when you drag your finger inside the area. To get your "piano keys" to work when you tap them, use To set your button highlight states back to I have had to find out the exact same thing you are after. I couldn't figure out So to avoid multiple posts on the subject, please check out my question and answers. | |||||
feedback
|