Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introducing import Framework

Introducing import Framework

2015/05/16 yidev#19

Toshihiro Morimoto

May 16, 2015
Tweet

More Decks by Toshihiro Morimoto

Other Decks in Technology

Transcript

  1. import_framework.py #!/usr/bin/env python import lldb import time import threading def

    import_framework(): for framework in [ 'Foundation', 'UIKit' ]: lldb.debugger.HandleCommand('p @import ' + framework) def __lldb_init_module(debugger,internal_dict): threading.Timer(3, import_framework).start() time.sleep(5) print"load ok" .lldbinit command script import import_framework.py