thieumao

Debug in iOS

May 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. There are three most important commands, which you need to know to work with LLDB successfully: print, expression and print object
  2.  
  3. n - Step over. Executes the following line of code, but does not enter inside functions
  4. s - Step into. Executes the following line of code, and enters inside functions
  5. c - Continue process
  6.  
  7. https://viblo.asia/yerkenabildin/posts/3Q75wDQDKWb
Advertisement
Add Comment
Please, Sign In to add comment