Chisel 是一个 LLDB 指令集合,用户辅助 iOS 应用差错。

示例代码:

#!/usr/bin/Python
# Example file with custom commands, located at /magical/commands/example.py

import lldb
import fblldbbase as fb

def lldbcommands():
  return [ PrintKeyWindowLevel() ]

class PrintKeyWindowLevel(fb.FBCommand):
  def name(self):
    return 'pkeywinlevel'

  def description(self):
    return 'An incredibly contrived command that prints the window level of the key window.'

  def run(self, arguments, options):
    # It's a Good habit to explicitly cast the type of all return
    # values and arguments. LLDB can't always find them on its own.
    lldb.debugger.HandleCommand('p (CGFloat)[(id)
[(id)[UIApplication sharedApplication] keyWindow] windowLevel]')

 

小笨狼的LLDB技巧:chisel
本篇内容主要为大家提供的是小笨狼的LLDB技巧:chisel。感兴趣的同学可以参考学习下,具体内容如下:

发布于 2016-01-20 05:14:10 | 343 次阅读


Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务