沙盒路径查找沙盒路径
显示沙盒路径
po NSHomeDirectory()
显示 Bundle 路径
po [[NSBundle mainBundle] bundlePath]
po = print object 是 lldb 的指令,是非常重要的调试指令
不用在开发时,写大量的 NSLog沙盒的主要路径
Documents
需要保存由应用程序本身产生的文件或者数据,例如:游戏进度、涂鸦软件的...
分类:
其他好文 时间:
2015-03-18 10:35:17
阅读次数:
138
详细说明了如何在在非越狱设备上使用 LLDB 调试第三方 App。...
分类:
移动开发 时间:
2015-03-17 14:12:34
阅读次数:
239
I‘m getting this error whenever I build in Xcode 6 beta 4. It seems to be making my app insanely slow. What exactly does this mean and how do I fix it? "Warning: Error creating LLDB target at path ...
分类:
数据库 时间:
2015-02-14 12:27:21
阅读次数:
211
Chisel是一个加强LLDB调试能力的小插件.主要特点在于辅助界面开发调试时在控制台以尽可能直观的方式查看界面的元素和情况.为我们梳理视图,控制器以及类关系层级.以及一些临时的界面调试变动进行快捷响应.它的作者来自于Facebook团队.得益于开源,让我们来观摩和了解一下这个东东到底有什么用处. ...
分类:
系统相关 时间:
2015-02-11 12:43:12
阅读次数:
178
开胃小菜--简单的断点调试在xcode中打开一个app,在想要break的行号上单击,即可生成一个深色的箭头标识--断点。如下图,在viewDidLoad:中设置了断点。运行app,等待。。。就可以看到xcode在断点处进入调试模式,现在让我们把视线移到xcode右下角的控制台,有木有看到(lldb...
分类:
其他好文 时间:
2015-01-26 11:48:18
阅读次数:
588
Debugger commands: apropos -- Find a list of debugger commands related to a particular word/subject. breakpoint -- A set of commands for operating on ...
分类:
数据库 时间:
2015-01-12 06:43:55
阅读次数:
256
你是否曾经苦恼于理解你的代码,而去尝试打印一个变量的值?1NSLog(@"%@",whatIsInsideThisThing);或者跳过一个函数调用来简化程序的行为?1NSNumber*n=@7;//实际应该调用这个函数:Foo();或者短路一个逻辑检查?1if(1||theBooleanAtSta...
分类:
数据库 时间:
2014-12-21 00:40:26
阅读次数:
459
LLDB在xcode4.3或者之后的版本里面是默认的调试器。假如你正在使用老一点版本的xcode的话,你又GDB调试器。他们有一些基本的相同的命 令,因此假如你的xcode使用的是“(gdb)”提示,而不是“(lldb)”提示的话,你也能够更随一起做,而没有问题。“po”命令是“print obje...
分类:
数据库 时间:
2014-12-04 13:29:42
阅读次数:
341
Below is a table of GDB commands with the LLDB counterparts. The built in GDB-compatibility aliases in LLDB are also listed. The full lldb command nam...
分类:
数据库 时间:
2014-12-03 19:04:07
阅读次数:
323
转:http://www.devdiv.com/home.php?mod=space&uid=50901&do=blog&id=50856在XCode的以前版本中,如果遇到了[代码]c#/cpp/oc代码:1message sent to deallocated instance 0x6d564f0...
分类:
数据库 时间:
2014-11-20 23:22:10
阅读次数:
321