iOS/Xcode 使用备忘录
文章目录
- 设置main函数输入参数:
Product->EditSceme->Arguments
- 调试时,可以直接在console中输入:
- 查看变量:
po 变量名 - 查看属性:
po (int)[item retainCount] - 查看数组:
po [array objectAtIndex:index]

po 变量名po (int)[item retainCount]po [array objectAtIndex:index]