美文网首页
开发常用技巧

开发常用技巧

作者: FunkyRay | 来源:发表于2017-12-25 16:58 被阅读15次
1.在修改插件时,如何找到插件的路径:
  • 打开插件
  • 搜索plug
  • 找到安装路径

2.修改Finder左边栏中英文展示都是根据隐藏的.localized文件,如果保留就展示中文,如果删除就展示英文。

3.修改相同变量名称时可以使用快捷键:command+control+E,能够避免替换整个页面的所有变量。

4.Xcode里自定义快捷键设置的文件路径:

/Users/komoyo0/Library/Developer/Xcode/UserData/CodeSnippets


5.修改项目模板以及main函数中的内容文件路径:

/Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/Project Templates/Mac/Application/Command Line Tool.xctemplate/

修改OC文件头部的描述信息文件路径:

/Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/File Templates/Source/Cocoa Class.xctemplate


6.自定义pch文件时,一般以该项目名称命名,并找到该路径:

Build Settings->搜索Prefix Header添加该pch文件路径, ex:BaiSiBuDeJie/Classes/Other/BaiSiBuDeJie.pch


7.在xib里添加label时,更换文字需要换行,可以按option + 回车

8.Mac截图快捷键
  • 全屏截图:Shift+Command+3
  • 窗口截图:Shift+Command+4

9.前往Finder的快捷键:Command + Shift + G

10.设置Mac文件的显示和隐藏:
  • 显示Mac隐藏文件的命令:
    defaults write com.apple.finder AppleShowAllFiles -bool true
  • 隐藏Mac隐藏文件的命令:
    defaults write com.apple.finder AppleShowAllFiles -bool false

之后重新启动Finder就可以了。


相关文章

网友评论

      本文标题:开发常用技巧

      本文链接:https://www.haomeiwen.com/subject/yznlgxtx.html