UITouch is a class from UIKit framework in Apple iOS. A UITouch object represents the presence or movement of a finger on the screen for a particular event.
0
votes
0answers
15 views
Transfer touch data to a Mac
How send all vars in UITouch/UIEvent object to a Mac or iMac
basically the goal is to create a trackpad.
multitouch will automatically be supported, if I manage to send all touches
and touch counts at ...
0
votes
0answers
30 views
Moving a sprite by touching anywhere on the screen
In my game only one sprite responds to touches. How can I make a mousejoint move this sprite/body regardless of where I touch on the screen?
-2
votes
1answer
58 views
Detect touch on the left/right part of the screen [closed]
I want to create a game, but I need to detect if the screen was touched on the left or the right side of the screen (in landscape). How can I do that?
0
votes
2answers
71 views
How to check line intersect in iOS?
I want to check line intersect in this demo example.
https://www.cocoacontrols.com/controls/android-pattern-lock-on-iphone
In this example I want to check when line intersect and show the alert ...
0
votes
4answers
99 views
How to connect two buttons( dots) with a line in iOS? [duplicate]
I want to make a project in which I have to touch one dot and connect it with another dot and after connect it to another dot. When I connect one dot with another dot the line will create between ...
0
votes
0answers
16 views
What is the best way/design to handle touches as well UICollectionViewDelegate methods
I have functioning UICollectionView controller with my own UICollectionView subclass and cells etc.
1)Now I decided to add slideView as explained in ...
0
votes
2answers
42 views
UIButton with custom view - addTarget:action:forControlEvents: does not work
My button is as follows
Created label1
Created label2
Created customView (UIView)
Added label1 and label2 on custom view
Created myCustomButton(UIButton)
Added customView on myCustomButton
I have ...
0
votes
1answer
54 views
How to create a resizeable view in ios?
Hi I am creating a application in which I have to create different type of stretchable views like oval , circular, octal by touching its corners.
I have found some Similar question but its works ...
0
votes
2answers
30 views
Touch Event on UTableViewController
There I need to add touch event on UTableViewController
Like there will be an image w.r.t. to each UICell, so when user touches any cell corresponding image will be visible to user, Image will only ...
0
votes
1answer
32 views
Issue with UIControlEventTouchDragOutside implementation
I have a 2-d button array in my main view and want to be able to move them by dragging inside this view. The buttons are pretty narrow, around 23x23 pixels. I have added targets for control events ...
1
vote
1answer
59 views
Event handling in subclass of UIView
As the guide Event Handling Guide for iOS mentions, when you create your own subclass of UIView:
All views that process touches expect to receive a full touch-event stream, so when you create your ...
0
votes
2answers
51 views
In iOS how to get Global touch event notification in background running state?
I am looking for a way to get notified about any user initiated touch event while my app is in background running state, I want to make it clear I don't want to handle gesture events or break ...
0
votes
3answers
23 views
How to have information that a touch event has happened and what kind of touch event and not handle it?
i want to create an NSNotification for all the the touch events happening with there specific recognise types and not handling them just observing them, any ideas?
0
votes
2answers
32 views
UIImageView touch handling
i have an image view as background image.
I am seeking that in some place on image view touches would be enabled.
I started with this:
- (id)initWithTouchPoint:(CGRect )point
{
self = [super ...
2
votes
3answers
64 views
How to find out what view a touch event ended at?
I wish to drag a UIImage on to one of several UIButtons and have it repositioned based on which button I drag it to.
The problem I've ran in to is that UITouch only records the view where my touch ...
3
votes
3answers
146 views
how to check UIView and UIImageView is touched or not in iphone sdk?
I have One UIView and one Draggable UIImageView.
Background color of UIView is green.
When I will drag the image, UIImageView will touch UIView.
When I drag the image over UIView the colour of UIView ...
0
votes
2answers
33 views
How to enumerate 2 touch points objective C
To find co ordinates of 2 touch points, then find distance between 2 points and hence to generate center to rotate around, I'm using following piece of code. I'm not sure if this is best way to do it. ...
0
votes
1answer
21 views
Get position of 2nd finger in touch/pinch
How can I get the position of the 2nd touch in a view in iOS? I am using UITouch and I only know how to get the position of the 1st finger if I am doing a pinch gesture. I am doing the pinch gesture ...
0
votes
2answers
74 views
Propagating touch events through sibling subviews?
I've got a stack of subviews that are all have user interactive sections (children) and all full screen. The problem is that, if I touch down on a non-interactive section at the top of the stack, it ...
0
votes
4answers
42 views
I have 15 UIButton in my iPhone project, after clicking on button one image is pop up and all images are different for different button?
I have 15 UIButton in my iPhone project, after clicking on button one image is pop up and all images are different for different buttons, how could I achieve this by using touch?
How should I call ...
1
vote
1answer
49 views
How to Better Drag a UIButton? UIButton UIControlEventTouchUpInside Event Is Not Called
My draggable button is using these events to be dragged:
[button addTarget:self action:@selector(beganDragging:)
forControlEvents:UIControlEventTouchDown];
[button addTarget:self ...
-4
votes
1answer
36 views
Confused about ios touches code [duplicate]
-(void)ccTouchesBegan...
UITouch* touch = [touches anyObject];
CGPoint location = [touch locationInView:[touch view]];
Can someone please explain in detail what exactly is going on in these two ...
0
votes
0answers
18 views
I want to remove the tags from UI imageView with multiple
Use the UITapGestureRecognizer, I draw a picture of a multiple.
Tap as many times as you like, picture can be drawn.
When you tap, I put the serial number the tag.
After you tap, I want to be scaled ...
0
votes
1answer
56 views
How can I detect which subview is touched when dealing various moving subviews?
The following code produces an animation of an image of a shape from the top of the screen and it drifts downward using core animation. When the user taps, it will log whether the user tapped the ...
0
votes
0answers
19 views
UIImageViews's not responding to touch event after application returns to the foreground
My application consists of a grid of UIImageView's that respond to touch events. If I switch to another application, then switch back to mine, the UIImageView's no longer seem to respond to touches. ...
0
votes
2answers
101 views
How do I detect a touch event on a moving UIImageView?
When researching "How do I detect a touch event on a moving UIImageView?" I've come across several answers and I tried to implement them to my app. Nothing I've come across seems to work. I'll ...
0
votes
2answers
144 views
Draw a 5 pixel line on UIView [duplicate]
I have a very simple (well hopefully very simple) question. In Objective-C, how do you draw a line between two points and add it to a UIView? I have tried using a UIImageView and manipulating its ...
0
votes
2answers
112 views
Touch events (touchesMoved) not working on UIViews inside UIScrollView
I have a UIView inside a UIScrollView, and the UIViewControllers for those views are not receiving the touch events. If I take the views out of the scroll view then it works.
UserInteraction is ...
1
vote
0answers
54 views
UIGestureRecognizer interrupt UITouch methods
I have a table with custom cells, which has subclass UITableViewCells and for touches animation I use UITouch (code based on this tutorial http://gregprice.co.uk/blog/?p=280) Index of cell under touch ...
0
votes
1answer
42 views
Get historcial points ios
Is there any function or algorithm to catch all the points when drawing in iPhone? Like in Android, where we have gethistoical points.
0
votes
1answer
106 views
Detecting left or right hand using multitouch on iPhone Screen
Below figure with orange area where baby palm will be placed. All I need to know how to detect baby plam is right or left.
2
votes
2answers
160 views
CGContextSaveGState 0x0 in UIBezierPath
I am trying to use Apples method for detecting if a point is in on a UIBezierPath. However it returns an ‘invalid context’.
As you can see from the NSlog, I am passing a UIBezierPath and A point to ...
0
votes
0answers
23 views
UITouch point margin of error for UIBeizerPath
Is there a way to ‘expand’ the touch point so that there is a good margin of error for touching a point on the line? Because of the nature of the touch and some lines being very thin (say 1 px in ...
0
votes
2answers
70 views
call UITableView methods from UITouch
I have a table with customs cells, which has subclass UITableViewCells and for control touches I use UITouch (code based on this tutorial http://gregprice.co.uk/blog/?p=280) I need inside touchesEnded ...
1
vote
1answer
149 views
IOS, Xcode: capture UITouch event ended
I am a beginner in IOS programming...I am not familiar with the methods at this moment.
The setting is:
I have a function called. In this function, I would like to wait for one tap and then ...
0
votes
2answers
74 views
iOS define touchable areas of an object, confine touches to subviews of self
I have a subclassed UIView I'll call customView. I would like enable touches so users can manipulate subviews, which have gesture recognizers and other controls, but the view itself I would like to ...
0
votes
1answer
55 views
Tracing a Line iOS
What I want to do is create a kids game where you have to trace a line. What I am trying to figure out is the best way to do this. I was thinking that I could use a transparent png with a line on it ...
0
votes
4answers
418 views
Detect touch of UIImage added as subview of UIScrollView
I have UIScrollView with many UIImageViews.I need to drag and drop image from UIScrollView to another view. Outside the scrollView touch is worked. But inside scroll view touch is not worked. I used ...
0
votes
0answers
77 views
UITouch event response in iCarousel
In My app I have implemented icarousel and made it to view. I have to paint in I carousel view.. When I tried to implement I'm having following issues.
No icarousel views are able to perform the ...
0
votes
0answers
19 views
Monitor how long since last touch [duplicate]
I am trying to find a way of checking how long since the app was last touched. If for instance its been at least 2 minutes since the last touch then I would like to reset some of the values on the ...
0
votes
1answer
78 views
touch locations, frames. CGRectContainsPoint not returning true
I have multiple UIImageView subclasses:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
for (UITouch *touch in touches) {
CGPoint _location = [touch ...
0
votes
0answers
13 views
Draggable Button Getting Stuck
I am using drag gable method to drag my UIButton which is working fine ,but sometimes it get stuck .
//draggable touch event //
- (void)previewImageDraggedInside:(UIButton*)aButton ...
0
votes
2answers
52 views
How to detect, that user doesn't use the application for 10 minutes?
There are many view controllers in my application. It's a social network.
And I need to change one of images of the application automatically if user didn't touch the screen for 10 minutes for ...
0
votes
1answer
62 views
App does not respond to touch on iOS4.2-4.3(iPhone 3g/3gs)
I've developed an app, and when I tested it on iPhone 3g with 4.2.1 and and iPhone 3gs with 4.3.3, the app doesn't respond to any touches.
When running a simple app, the touch works perfectly?
Where ...
0
votes
0answers
116 views
Getting Incorrect IndexPath.row on UITableView with CustomCell in UIScrollView
I am creating Multiple tables in Horizontal ScrollView with Page Control. But problem which I am facing is to retrieve correct IndexPath.row on touch event of UIButton
On the 0th page touch is ...
-2
votes
1answer
53 views
Moving sprite from a group of sprites
I am having 15 sprites in my layer.i added these sprite to mutable array i want to move single sprite using ccTouchesMoved.when the touch ended ccTouchesEnded sprite move back to its starting point or ...
0
votes
2answers
60 views
Move UIImageview using the UITouches
I have subclassed a uiview ,in which i am adding two uiimageview,with one view for the background and another image view for an image which one i would like to move on touch.I am adding this subclass ...
0
votes
2answers
128 views
unable to get touch event delegate method on touch of uiimageview
I have added some uiimageview in a scrolview and now want to perform some action on touch on it uiimageview. But my touch delegates methods are not being called up. Following is my code:
int x = 0;
...
1
vote
1answer
97 views
UIImageView overlapping effect inside a UIView
Check this URL http://krystalrae.com/
Scrolling down you will see a girl's cloths are changing on mouse wheel scrolling.
I have to create a iPad application where 3 images will appear likewise. The ...
-4
votes
2answers
141 views
how to get a value from NSSet? [closed]
I have printed an NSSet like below
touch :<UITouch: 0x9266b60>
phase: Began
tap count: 1
window: <UIWindow: 0x718a240;
frame = (0 0; 320 480);
layer = <UIWindowLayer: ...



