David B
David B

Reputation: 3581

Logging touches' coordinates on ViewController

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

Answers (1)

Yogi
Yogi

Reputation: 3588

You can use method - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

Upvotes: 1

Related Questions