Reputation: 3581
I have this newly created Empty project using XCode5. Added a storyboard with one blank View Controller
. Created a custom view controller class.
Here's the question. How could I log or display the touches on this project?
Upvotes: 0
Views: 28
Reputation: 3588
You can use method - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
Upvotes: 1