一次导入太多主题了,试了又用不上,想删了界面只提供单个删除。
还好装Xcode了,可以open ~/Library/Preferences/com.googlecode.iterm2.plist
用Xcode打开,定位到Custom Color Presets下面的主题名称上,长按住删除键即可很快删完。
6篇 xcode related articles
一次导入太多主题了,试了又用不上,想删了界面只提供单个删除。
还好装Xcode了,可以open ~/Library/Preferences/com.googlecode.iterm2.plist
用Xcode打开,定位到Custom Color Presets下面的主题名称上,长按住删除键即可很快删完。
对cocoapods spec执行校验 pod spec lint
时报出这个:
xcrun: error: unable to find utility "simctl", not a developer tool or in PATH
大致意思是环境变量少developer tool, 解决方法就是打开xcode的设置,
Preferences > Locations > Command Line Tools 中选择下当前的xcode,可能会提示输入密码。完成即可。
对于引用的第三方c代码库,常常出现这种警告,一个个去修改很麻烦,找到个办法可以忽略这种告警。
在XCode的 Build Phases > Compile Sources 中选择所有.c文件, 双击任一行c文件后面那一列,也就是compiler flags。
在里面添加-Wno-shorten-64-to-32
The issue is:
When I open pycharm git project, it displays the error:
Cannot Run Git
git: error: unable to locate xcodebuild, please make sure the path to the Xcode folder is set correctly! git: error: You can set the path to the Xcode folder using /usr/bin/xcode-select -switch
And I try git command in the Terminal, it's same error.
There I found the solution on stackoverflow:
Run this command:
sudo xcode-select --switch /Library/Developer/CommandLineTools/
我好久不用Xcode,发现以前在右侧边栏的UI组件库不见了,找了半天也没找到,google一搜,还真有不少人我和一样https://stackoverflow.com/questions/51051532/xcode-10-where-are-the-ui-elements
View -> Libraries -> Show Library
或者快捷键 Command + Shift + L
XCode debug启动时报这个:
libMobileGestalt MobileGestaltSupport.m:153: xxx does not have sandbox access for frZQaeyWLUvLjeuEK43hmg and IS NOT appropriately entitled
libMobileGestalt MobileGestalt.c:550: no access to InverseDeviceID (see )
解决方法 Edit Scheme-> Run -> Arguments, 在Environment Variables里边添加
OS_ACTIVITY_MODE = Disable