
How is it possible to use the Debugger for a iOS-Application, to scan e.g. the "touchStart"-event ?
Thanks
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Will write the string out to the standard error stream. These messages will be visible in Console.app when running in the simulator, and in the Console tab of the Xcode Organizer for a given target device while it is connected to the host computer.
Code: Select all
on touchstart pID
put "touchStart " & pId && the milliseconds into field "myDebugField"
-- rest of code here
end touchstart