xcode开发环境中字母图标和debug navigator中的小图标的含义

来源:互联网 发布:淘宝网上手机 编辑:程序博客网 时间:2024/05/21 10:05

在xcode中对某个文件修改过后,在该文件后边就会出现提示,如A、M、D之类的图标,如图

总结如下:

1、“M” 图标 --- modified,表示该文件已被修改,需要 commit。
2、“A”图标 --- added,表示该文件是新添加的,已受SVN管理,需要 commit。
3、"?”图标,表示该文件是新添加的,并且脱离了SVN的管理,首先需要add,然后 commit.
4、“!” 图标--- un management。
5、“D”图标 ---deleted,表示该文件在服务器上已被删除,这时update的话,可删除本地的文件。
6、“C”图标 --- conflict,表示该文件与服务器的文件冲突。

7、“R” 图标 --- removed,移除。


xcode debug中各小图标含义:

(一)、调用堆栈中的icon



各icon意思如下:

  • Person icon is User
  • Mug icon is AppKit (or UIKit)
  • Briefcase icon is Frameworks
  • Gear icon is System
  • Morse code icon is Foundation
  • Spider web looking icon is Web

(二)、Debugger窗口中的Icon意思
比如 :xcode-2
各icon意思如下:

  • L = Local variable
  • A = Argument
  • S = Static variable
  • V = global Variable
  • R = register
  • i  = Instance variable
  • E = Expression

0 0
原创粉丝点击