active questions tagged touch - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:00:32Z http://stackoverflow.com/feeds/tag/touch http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1535933/how-do-i-handle-uisliders-touch-event-in-iphone 0 how do i handle uislider's touch event in iphone? Shweta Simply 2009-10-08T06:26:49Z 2009-11-26T05:00:02Z <p>i want to fire a timer as user slides the slider when the touch ends. is there a way to handle touch events of uislider?</p> http://stackoverflow.com/questions/1781543/how-to-get-touch-event-on-imageview-of-uitableviewcell 0 how to get touch event on imageView of UITableViewCell ? bandw 2009-11-23T07:13:30Z 2009-11-24T05:42:22Z <p>Hi, I want to get notifications when user single tap or double tap on imageView of UITableViewCell. I have been try to add a subview to imageView, and use touchesBegan:withEvent: in subview controller, but can't trigger the event I expected. How can I do the job ?</p> http://stackoverflow.com/questions/1477909/cocos2d-iphone-non-rectangular-sprite-touch-detection 0 Cocos2d iPhone Non-Rectangular Sprite Touch Detection Genericrich 2009-09-25T15:15:45Z 2009-11-21T01:04:21Z <p>Have a project with a TRIANGLE shaped graphic in a sprite. I am arranging these sprites in a grid so that their rectangles are all overlapping. As sprites get touched their z-order is being changed (by me) to put them on the top of zOrder.</p> <p>I am using Cocos 0.8.1 and the touch dispatcher method. I have touches working but obviously the "hidden" sprites which are overlapped by other sprites are not able to be touched.</p> <p>The problem is that the "Is the touch in my rect" method is based on the rectangle of the sprite, but the image is a triangle, and I would like to ask if anyone knows a Cocos-friendly method of testing whether the image itself is being hit.</p> <p>I seem to remember this was a popular method of hit testing back in the day but I can't find any reference to how it might be done in Cocos/iPhone Land.</p> <p>The goal is to only respond to touches when an image pixel is touched, not just the rect containing the sprite.</p> http://stackoverflow.com/questions/1185674/propagating-touches-from-uiapplication-in-a-custom-manner 0 Propagating touches from UIApplication in a custom manner cocoatoucher 2009-07-26T21:58:33Z 2009-11-20T16:58:38Z <p>Is it possible to propagate touches from shared application object to a custom view which has not actually received touches and somewhere at the back of the top view? Assume that I can't use my top view to track touches.</p> http://stackoverflow.com/questions/1737773/tooltips-in-the-era-of-touch 6 Tooltips in the era of touch Stefano Borini 2009-11-15T15:12:08Z 2009-11-20T05:07:12Z <p>Tooltips are an incredibly useful interface paradigm to know an application. They are the mapping between the visual control and the application specific action associated to that control. the user can explore the action without invoking it just by hovering the mouse pointer.</p> <p>The touch devices make this paradigm basically impossible. this limits the usability of the app, which becomes in some cases pretty mysterious. </p> <p>Do you know if a substitute for the tooltip concept exists for touch devices? they effectively lack one degree of freedom in ui interaction: the pointer position. how to regain this communication channel effectively? </p> http://stackoverflow.com/questions/1683538/how-to-write-software-for-my-touchpad 1 How to write software for my touchpad? Nona Urbiz 2009-11-05T20:56:14Z 2009-11-20T03:01:35Z <p>I have some ideas for improvements on my touchpad, ranging from the run of the mill scroll horizontally at the bottom, tapzones for right click, to more complicated ones. But I have no idea where to get started? I'm working on Windows 7 Home Premium, its an Asus laptop, and I have none of these options natively available to me. Regardless, I want to write something that anyone can use.</p> <p>Where would I start?</p> <p>(it'd be nice to write in c++? is that possible? what are the requirements here? what language would be recommended?)</p> http://stackoverflow.com/questions/1660536/ux-design-for-disabled-controls-w-the-touch-interface 0 UX Design for Disabled Controls w/ the Touch Interface moogs 2009-11-02T10:45:52Z 2009-11-20T03:01:20Z <p>So we're re-designing a desktop application so that it's also usable with thye Touch Interface with Windows 7. We've consulted the UX guidelines.</p> <p>For some part of the UI, there are toolbox icons that are disabled because of some arcane rules (the software communicates with a hardware device). We disable the actions that aren't applicable (because of some condition) and let the user hover the mouse on the tool icon to see the tooltip explanation on why that tool is disabled.</p> <p>Since there is no "hover" for the touch interface (windows 7, iphone, ..) what is a better pattern/model for this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1736341/which-object-or-view-did-i-touch 0 Which object, or view, did I touch? Spanky 2009-11-15T02:15:35Z 2009-11-15T16:20:10Z <p>Working in a ViewController that has a few views which were added to it as subviews and I have a touchesBegan method:</p> <pre><code> UIImageView *testImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"test.png"]]; testImage.frame = CGRectMake(0, 0, 480, 280); [self.view addSubview:testImage]; - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { CGPoint point; UITouch *touch = [touches anyObject]; point.x = [touch locationInView:self.view].x; point.y = [touch locationInView:self.view].y; if ( point.y &gt;= 280 &amp;&amp; point.y &lt;= 320 ) { if ( point.x &gt;= 0 &amp;&amp; point.x &lt;= 160 ) { [self menu1]; } if ( point.x &gt;= 161 &amp;&amp; point.x &lt;= 320 ) { [self menu2]; } if ( point.x &gt;= 321 &amp;&amp; point.x &lt;= 480 ) { [self menu3]; } } } </code></pre> <p>My question is how in that method can I discern which view was clicked? I've been doing it with those screen coordinates, but that won't work if I also move those views at runtime.</p> <p>Is there a way to see which view was clicked in the touches or event or in this code from above:</p> <pre><code>UITouch *touch = [touches anyObject]; </code></pre> <p>Any help appreciated // :)</p> http://stackoverflow.com/questions/1737369/iphone-get-touch-coordinates-in-the-form-of-0-480-and-0-320 0 [iphone] get touch coordinates (in the form of 0-480 and 0-320) jacky 2009-11-15T12:04:19Z 2009-11-15T12:20:44Z <p>i dont get how to translate the coordinates of the iphone.</p> <p>if i make a single touch i get the coordinate.</p> <p>if i make a touch and keep it and release it it shows the difference of the starting and end point.</p> <p>how do i get the absolute position of the touch?</p> <p>thanks!</p> <pre><code>-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch = [[event allTouches] anyObject]; CGPoint location = [touch locationInView:touch.view]; NSLog(@"X: %f",location.x); NSLog(@"Y: %f",location.y); } </code></pre> <p>I want to resize an image with touch and drag(only the height)</p> http://stackoverflow.com/questions/1734499/passing-on-presses-from-a-uibutton-to-a-scroll-view 0 Passing on presses from a UIButton to a Scroll View Chonch 2009-11-14T15:09:42Z 2009-11-14T17:56:24Z <p>Hey,</p> <p>I have several UIButtons on top of a UIScrollView. Each of the buttons do something when the pressUpInside method is called.</p> <p>What happens is that is the scroll view is scrolled when the area between the UIButtons is pressed, everything is working properly. But, when the user tries to scroll by touching one of the UIButtons and scrolling, nothing happens because the UIButton takes the touch, realizes it has nothing to do with it (because it wasn't released within the button's area) and then discards it. The UIScrollView doesn't even know that a touch occurred.</p> <p>I tried subclassing UIButton, but either the button completely ignored all presses or that the press didn't reach the UIScrollView.</p> <p>Can anyone please show me how to subclass UIButton properly so that it would respond to a touchUpInside method but pass all other touches to the UIScrollView?</p> <p>Thanks, Chonch</p> http://stackoverflow.com/questions/1730715/dragging-a-particularly-large-sprite-up-and-down-like-scroll-effect-in-cocos2d 0 Dragging a particularly large sprite up and down like scroll effect in COCOS2D maxfire 2009-11-13T17:23:40Z 2009-11-13T17:23:40Z <p>I am really stuck on this. My application is in landscape view and on one screen i wanted my instructions image to be scrollable. I have added this image as a sprite. First i tried to get scroll effect available from other sites, but soon i saw that scrolling was being done for the complete screen and not the sprite image. Then i resorted to implement the scrolling effect by dragging the sprite only in y axis (up and down). Unfortunately i am messing things somewhere, due to which only a portion of the sprite (shown on the screen only with the height 320pixels) is being dragged and the rest of the sprite is not being shown. The code is as follows</p> <p>in the init layer function i have</p> <p>//Add the instructions image</p> <p>instructionsImage = [Sprite spriteWithFile:@"bkg_InstructionScroll.png"]; instructionsImage.anchorPoint = CGPointZero; [self addChild:instructionsImage z:5]; instructionsImage.position = ccp(40,-580); oldPoint = CGPointMake(0,0); self.isTouchEnabled = YES;</p> <p>//The touch functions are as follows - (BOOL)ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch = [touches anyObject];</p> <p>// Move me! if(touch &amp;&amp; instructionsImage != nil) { CGPoint location = [touch locationInView: [touch view]]; CGPoint convertedPoint = [[Director sharedDirector] convertCoordinate:location];</p> <p>CGPoint newPoint = CGPointMake(40, (instructionsImage.anchorPoint.y+ (convertedPoint.y - oldPoint.y))); instructionsImage.position = newPoint; return kEventHandled; } return kEventIgnored; }</p> <p>//The other function - (BOOL)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch = [touches anyObject];</p> <p>// Move me! if(touch &amp;&amp; instructionsImage != nil) { CGPoint location = [touch locationInView: [touch view]]; CGPoint convertedPoint = [[Director sharedDirector] convertCoordinate:location]; oldPoint = convertedPoint; return kEventHandled; }</p> <p>return kEventIgnored; }</p> http://stackoverflow.com/questions/1499926/equivalent-of-touch-in-scons 1 equivalent of "touch" in scons? Jason S 2009-09-30T18:38:49Z 2009-11-11T17:02:42Z <p>scons uses MD5 hashes rather than file mod times to determine if a dependency needs to be built.</p> <p>I want this to be the default behavior. But is there any way to force it to assume a particular file is out of date (the equivalent of "touch"), besides editing the file to make it different?</p> <p><strong>edit:</strong> use case:</p> <p>binary file F is used to create another file G using a tool X. For some reason file G has changed (it got corrupted, or I edited it) or tool X has changed, and I want to recreate file G and everything downstream of it.</p> <p><strong>edit:</strong> This is for occasional use only. I do not want this to happen always, only those few times when I ask for it. Also I may not know the particular file ahead of time. For this reason I do not want to modify the SConscript/SConstruct files to build a particular file. What I would like is to do this at a command prompt:</p> <pre><code>scons {something to specify file foobar.h} </code></pre> <p>and that would force scons to build all files depending on foobar.h, whereas just typing <code>scons</code> would do the regular build using MD5 hashes for dependency checking. I don't mind editing the SConscript/SConstruct files ahead of time to allow this (custom Decider, I guess), if there's a way to do so that doesn't significantly increase the build times.</p> http://stackoverflow.com/questions/1715322/how-to-touch-a-file-with-jscript 0 How to touch a file with JScript? Scullion 2009-11-11T13:56:17Z 2009-11-11T14:39:57Z <p>Is there a way to touch a file (i.e. change its modification time) from a JScript? There is a <code>DateLastModified</code> property in <code>FileSystemObject</code> (ActiveXObject), but it's read-only.</p> <p>Couldn't even find a clear "no, you can't" on this...</p> http://stackoverflow.com/questions/1694475/uiwebview-touches 0 UIWebView Touches Adam 2009-11-07T21:26:47Z 2009-11-07T21:26:47Z <p>I'm trying to catch when a user stops interacting with a UIWebView. I've added this code to my UIWebView, but it never seems to get called.</p> <pre><code> - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { NSLog(@"Touches ended"); } </code></pre> http://stackoverflow.com/questions/1679502/cgrectcontainpoints-touches-queries -2 CGrectContainPoints & Touches queries Drahc 2009-11-05T09:55:41Z 2009-11-05T11:08:49Z <p>Im getting straight to the point. I have static coordinates stored as array and i want to compare this coordinates with user touch. </p> <pre><code>//touch handling UITouch *touch = [[event allTouches] anyObject]; CGPoint touchPoint = [touch locationInView:touch.view]; //comparing touches if (CGRectContainsPoint((CGRectMake(x1, y1, w, h)) , touchPoint)) { // do something // this is where i got stuck coz i got 2 more sets of x &amp; y. (x2-y2 &amp; x3-y3) </code></pre> <p>but right now im stuck here coz i dont know how to structure my codes and i want to compare 3 save location touches to user touches so that when they hit the right spot points/score will be added but when they hit the wrong spot life will be deducted. Thanks.</p> http://stackoverflow.com/questions/1654086/emulating-touch-screens 0 Emulating touch-screens Kaitsuli 2009-10-31T11:11:04Z 2009-10-31T11:14:33Z <p>Hi,</p> <p>How would you emulate touch-screens? I wouldn't want to pay $ to get a touch-screen to test my software whether it supports touching fully. Any links or tips?</p> http://stackoverflow.com/questions/1641027/recognize-regular-taps-in-table-view-on-iphone 0 Recognize regular taps in table view on iPhone Marcin Zbijowski 2009-10-29T00:44:22Z 2009-10-29T01:40:16Z <p>Hello, </p> <p>I have a table view with custom cells and I recognize swipes in that cells. That works just fine but I'd like the table view to behave normally. When I tap the wherever on the table view I'd like cell to get selected and perform action tableView:didSelectRowAtIndexPath:</p> <p>Any tips or ideas?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1417931/how-to-make-an-uialertviewpop-up-come-when-a-bouncing-image-touches-a-dragable 0 How to make an UIAlertView(Pop Up) Come When a Bouncing image touches a dragable image(iPhone SDK)? Rohan Dhawan 2009-09-13T14:58:23Z 2009-10-28T21:58:33Z <p>Hi Guys</p> <p>how can a pop up alert cum when an bouncing img touches a dragable image like how it is done in this app <a href="http://tinyurl.com/kspnh6" rel="nofollow">http://tinyurl.com/kspnh6</a></p> <p>Example there is an image that is going up and down the screen and it touches an image that we can drag here &amp; there,how can v bring a alertview when that image touches the moving image</p> <p>thanks</p> http://stackoverflow.com/questions/1637525/uiscrollview-what-is-the-correct-way-to-allow-a-subview-to-receive-touch-events 0 UIScrollView. What is the correct way to allow a subview to receive touch events? dugla 2009-10-28T14:17:58Z 2009-10-28T14:17:58Z <p>I have a relativeluy simple setup.</p> <p>myScrollView</p> <pre><code>containerView touchSensitiveView passiveView </code></pre> <p>So, touchSensitiveView and passiveView are subviews of containerView which is the only subview of myScrollView, a UIScrollView instance (not a subclass of UIScrollView).</p> <p>touchSensitiveView implements all touch sequence methods:</p> <p>touchesBegan/touchesMoved/touchesEnded/touchesCancelled </p> <p>This allows it to be dragged vertically with respect to myScrollView. The problem is that touch events don't seem to be getting passed to touchSensitiveView very well. The effect is as if there is gunk in the works. Dragging happens in fits and starts. Sometimes dragging doesn't work at all.</p> <p>Are there methods on UIScrollView I need to implement to specifically allow a subview to respond to touch events?</p> <p>Thanks in advance.</p> <p>Cheers,</p> <p>Doug</p> http://stackoverflow.com/questions/1628288/variable-losing-its-value-iphone-sdk 0 Variable losing its value (iPhone SDK) Kevin McFadden 2009-10-27T01:27:13Z 2009-10-27T01:37:35Z <p>I declare a variable in the header file and synthesize it in the implementation. When the view loads (ViewDidLoad) I read a plist file an populate the variable with a value. WIth my NSLog I see that the variable contains the value. However, after the view loads, I have some interaction with the user via a button the executes a method. WIthin that method I check the value again and it is invalid. Why won't the variable maintain its value after the initial load?</p> <p>program.h</p> <pre><code>.... NSString * user_title; ... @property (nonatomic, retain) NSString *user_title; </code></pre> <p>program.m</p> <pre><code>@synthesize user_title; -(void)viewDidLoad{ NSString *filePath = [self dataFilePath]; if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) { NSArray *array = [[NSArray alloc] initWithContentsOfFile:filePath]; user_title = [array objectAtIndex:0]; [array release]; } .... -(IBAction)user_touch_screen:(id)sender { user_label.text = user_title; //user_title has an invaliud value at this point .... </code></pre> http://stackoverflow.com/questions/1608465/preventing-touches-from-being-handled-by-a-parent-table-view 0 Preventing touches from being handled by a parent table view Douglas Mayle 2009-10-22T16:37:17Z 2009-10-23T13:13:37Z <p>I have a custom table view cell that handles user gestures. However, even if I have exclusiveTouch set to YES, the moment the y value changes by any amount, scolling starts, even if I'm in the middle of handling the touch events. How do I prevent the table from scrolling when I'm handling touch events in the cell?</p> http://stackoverflow.com/questions/1578455/adding-a-uiimage-on-a-touch-event-iphone 0 Adding a UIImage on a touch event iPhone Tom G 2009-10-16T14:38:24Z 2009-10-16T18:05:43Z <p>OK i am really struggling with this!</p> <p>I know had to add an image to the view, i know how to record a touch event. But combining the two is proving to be an issue.</p> <p>There are lots of tutorials out there on how to move an image with touch events.</p> <p>But Could anyone suggest how i might complete the following:</p> <ul> <li>Add an image to the view on touch</li> <li>Add the same image on another touch received by the user.</li> <li>Manipulate the location of the added images when the user touches a previously added image</li> </ul> <p>Any advice would be highly appreciated</p> http://stackoverflow.com/questions/1570108/comparing-touch-coordinates 1 Comparing Touch Coordinates. Clyde 2009-10-15T03:16:27Z 2009-10-15T15:16:04Z <p>Is it possible to compare touch coordinates made by the users on the UIView to the one store in a plist or txt format? The argument looks like this;</p> <pre><code> if (user touch coordinate == touch coordinate stored in plist or text) then (do something) else (do something) </code></pre> <p>If possible in what format should i write the coordinates in the list and how to associate it inside the program?</p> <p>thanks in advance and sorry if you find my question a bit noobie.</p> http://stackoverflow.com/questions/1500896/why-am-i-not-receiving-either-wmgesture-or-wmtouch 0 Why am I not receiving either WM_GESTURE or WM_TOUCH? DamonJW 2009-09-30T22:01:55Z 2009-10-01T10:26:59Z <p>My window is not receiving WM_GESTURE messages, nor WM_TOUCH messages. According to the <a href="http://msdn.microsoft.com/en-us/library/dd693088%28VS.85%29.aspx" rel="nofollow">msdn touch troubleshooter</a>, I ought to be receiving WM_GESTURE messages unless I have called RegisterTouchWindow, which I have not. My code calls GetSystemMetrics as described in the help page for "Getting started with Windows Touch", and it tells me that touch is available and ready. I am running Windows 7, on a tablet PC.</p> <p>My code is below (Python 2.6, using wx GUI). When I run it, it prints out lots of dots, showing me that my WndProc is being called, and that it is getting the standard messages. It also shows up WM_TABLET_QUERYSYSTEMGESTURESTATUS, message 716, from time to time. But it never receives message 0x240 nor message 0x119, which I believe (from web searching) are the numbers for WM_TOUCH and WM_GESTURE.</p> <pre><code>import wx import ctypes import win32con win32con.SM_DIGITIZER = 94 win32con.NID_READY = 0x80 win32con.WM_TOUCH = 0x240 win32con.WM_GESTURE = 0x119 touch_capabilities = ctypes.windll.user32.GetSystemMetrics(win32con.SM_DIGITIZER) assert touch_capabilities&gt;0, 'Input digitizer does not have touch capabilities' assert touch_capabilities &amp; win32con.NID_READY &gt; 0, 'Input digitizer is not ready' standard_messages = [win32con.WM_MOUSEMOVE,win32con.WM_NCHITTEST,win32con.WM_SETCURSOR,win32con.WM_PAINT, win32con.WM_MOUSEACTIVATE,win32con.WM_GETDLGCODE,win32con.WM_LBUTTONDOWN, win32con.WM_LBUTTONUP,win32con.WM_CAPTURECHANGED,win32con.WM_MOUSELEAVE, win32con.WM_NCMOUSEMOVE] class MyWindow(wx.Frame): def __init__(self, **x): wx.Frame.__init__(self, **x) WndProcType = ctypes.WINFUNCTYPE(ctypes.c_int, ctypes.c_long, ctypes.c_int, ctypes.c_int, ctypes.c_int) self.newWndProc = WndProcType(self.WndProc) self.oldWndProc = ctypes.windll.user32.SetWindowLongW(self.GetHandle(), win32con.GWL_WNDPROC, self.newWndProc) def WndProc(self, hWnd, msg, wParam, lParam): print ('.' if msg in standard_messages else msg), return ctypes.windll.user32.CallWindowProcW(self.oldWndProc, hWnd, msg, wParam, lParam) app = wx.App(False) frame = MyWindow(parent=None, id=wx.ID_ANY, title='test touch+gestures') frame.Show(True) app.MainLoop() </code></pre> http://stackoverflow.com/questions/1481978/multitouch-not-working-in-uitabbar-controller 0 multitouch not working in uitabbar controller Houston7700 2009-09-26T19:27:29Z 2009-09-27T05:56:00Z <p>Hi, I wrote a Simple View Controller with multi touch function (swipe left, swipe right). It works fine if I set it to window directly. But after I added a tab bar controller and add this Simple View in its selected view, the multi-touch event won't get fired any more.</p> <p>Please help. Thanks.</p> http://stackoverflow.com/questions/1410885/how-do-i-know-if-a-motionevent-is-relative-or-absolute 1 How do I know if a MotionEvent is relative or absolute? PeyloW 2009-09-11T13:31:51Z 2009-09-17T10:34:53Z <p>I am implementing <code>OnTouchListener</code> and am receiving MotionEvent objects. Some <code>ACTION_MOVE</code> events reports absolute X/Y coordinates, while some reports relative coordinates.</p> <p>How can I ask a <code>MotionEvent</code> what kind of coordinates it currently represents?</p> http://stackoverflow.com/questions/377785/problem-with-cocos2d-for-iphone-and-touch-detection 5 Problem with cocos2D for iPhone and touch detection maw 2008-12-18T13:08:50Z 2009-09-12T22:01:27Z <p>I just don't get it. I use cocos2d for development of a small game on the iPhone/Pod. The framework is just great, but I fail at touch detection. I read that you just need to overwrite the proper functions (e.g. "touchesBegan" ) in the implementation of a class wich subclasses CocosNode. But it doesn't work. What could I do wrong?</p> <p>the function:</p> <p>-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{NSLog(@"tickle, hihi!");}</p> <p>did I get it totally wrong?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1314713/check-if-drawn-path-cgpath-intersects-itself-in-an-iphone-game 2 Check if drawn path/CGPath intersects itself in an iPhone game Edgar 2009-08-22T00:00:04Z 2009-09-12T12:59:58Z <p>I have a path drawn in OpenGL ES. I can convert it to a CGPath if needed.</p> <p>How would I check if it intersects itself (If the user created a complete loop)?</p> http://stackoverflow.com/questions/1406473/simulate-touch-command-with-java 3 Simulate touch command with Java Sinuhe 2009-09-10T16:56:11Z 2009-09-10T17:21:39Z <p>I want to change modification timestamp of a binary file. What is the best way for doing this?</p> <p>Would opening and closing the file be a good option? (I require a solution where the modification of the timestamp will be changed on every platform and JVM).</p> http://stackoverflow.com/questions/1392550/detect-double-tap-on-uislider 0 Detect double-tap on UISlider? Randy 2009-09-08T07:48:24Z 2009-09-08T07:48:24Z <p>I can detect single/double-taps in specific views with:</p> <pre><code>NSSet *myTouches = [event touchesForView:mySpecificView.view]; </code></pre> <p>but I want to detect a double-tap on the button of a slider and can't find any reference to it. Is there a replacement for "touchesForView:" where I can enter the name of my slider?</p> <p>usage: I have three sliders with their default value being directly in the center of the slider. Once the position of the slider has changed, I want a quick way to individually reset each slider to its default position. </p> <p>I currently have each slider's containing view set to respond to a double-tap, updating each slider. It works fine, but doesn't seem natural. ie.I can't double-tap on the slider itself because the slider intercepts the taps and doesn't pass them on to the surrounding view. </p> <p>thanks in advance </p>