HI ...
How to track user-touch events in UIViewController class...
i tried giving self.view .delegate = self;
Still all those touchBegan, touchMoved, etc methods didnt worked.....
But i created a separate UIView class and wrote all those methods in that, and assigned a object of that class as its view
self.view = myView
How to put those delegate methods for "touch" in UIViewController class?
How to track user-touch events in UIViewController class...
i tried giving self.view .delegate = self;
Still all those touchBegan, touchMoved, etc methods didnt worked.....
But i created a separate UIView class and wrote all those methods in that, and assigned a object of that class as its view
self.view = myView
How to put those delegate methods for "touch" in UIViewController class?