This Blog is for all iOS App Developers to get the code samples and working Code directly from the Blog.Iam requesting to all please add your inputs as well for the Blog can useful to all.
Search This Blog
Monday, September 13, 2010
Touches Functions
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
CGPoint pnt = [touch locationInView:self.view];
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
CGPoint pnt = [touch locationInView:self.view];
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
CGPoint pnt = [touch locationInView:self.view];
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment