I am creating a semi-piano app in Objective-C for iPhone; it's in fact a diffrent layout MIDI Controller, but I'm still working on the design.

I created all of the "keys" with UIButtons, and I want to be able to slide to them or from them to other UIButtons.

I read all the similar questions before, but I couldn't make it to work with touchesMoved, Because it only worked from the view if I didn't drag the finger from a UIButton.

Thanks in advance, code will be appreciated!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Are your buttons created in IB? The default event when connecting buttons in IB is "touch up inside", which means the action is fired when the user ends a touch (lifts the finger) inside the button. A piano key or similar would be more appropriate to fire on the "touch down inside" (for the initial press) and the "touch drag enter" (for when a finger that is already on the screen moves into the button).

Since you are doing it programmatically, you can add targets to the buttons as described here:

http://developer.apple.com/library/ios/documentation/uikit/reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:

Just include the events you want in the mask.

link|improve this answer
Thanks, I'm actually doing everything programmatically, as I find it more interesting, yeah, I'm actually using the touch down inside, but I havn't tried the couch drag inside, I'll Tell you how it went later on. – Mr.Awesome Nov 19 '11 at 17:32
Ok, I've added a bit to my answer, hope that helps. – jrturton Nov 19 '11 at 17:37
Great! I made it to work! now just to do the same thing for 54 keys :P – Mr.Awesome Nov 19 '11 at 17:52
Please accept the answer if it worked for you, this acts as a guide to future readers and helps your reputation on the site. This is done by clicking the checkmate symbol under the answer score. – jrturton Nov 19 '11 at 18:17
I added a new question in the main topic, please answer if you can, Thanks! – Mr.Awesome Nov 25 '11 at 16:40
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.