ios ui debugging

8
iOS UI debugging

Upload: davidolesch

Post on 15-Jul-2015

81 views

Category:

Technology


5 download

TRANSCRIPT

Page 1: iOS UI debugging

iOS UI debugging

📱

Page 2: iOS UI debugging

NSLog + Recompile

• Objective-C books and classes cover NSLog

• Debugging requires lots of logging and recompiling is slow

Page 3: iOS UI debugging

Print stuff w/o recompiling

• breakpoints pause execution and invoke the debugger

• use the p command to print values

Page 4: iOS UI debugging

Custom breakpoints

Page 5: iOS UI debugging

LLDB without breakpoints

Page 6: iOS UI debugging

• caflush - Flush the render server

• thread return - Return from the currently selected frame with an optional return value

• wivar - Watch for changes to an instance variable of an object

Page 7: iOS UI debugging

Recommended Reading

• github.com/facebook/chisel

• (lldb) help

Page 8: iOS UI debugging

iOS UI debugging

📱