240 发简信
IP属地:浙江
  • 卸载HomeBrew安装的Ruby版本

    背景:有时Ruby使用多个工具安装会造成冲突,报各种冲突错误,需要卸载某个版本。 查看 ruby 的安装所有目录: 输出 卸载3.3.3: 如果...

  • Git-根据tag创建分支

    1.通过:git branch <new-branch-name> <tag-name> 会根据tag创建新的分支.例如:git branch ...

  • 隐式移除navigationController栈中的指定控制器

    遍历查找到目标控制器,执行 removeFromParentViewController 方法 复制 navigationController....

  • 更新zsh后,每次打开终端都提示zsh权限问题

    问题: [oh-my-zsh] For safety, we will not load completions from these dire...

  • xcrun: error: SDK "iphoneos" cannot be located

    pod install时,报错: xcrun: error: SDK "iphoneos" cannot be located xcrun: e...

  • iTerm2命令执行卡顿解决办法

    1. 第一种方法 隐藏git仓库提示 git config --add oh-my-zsh.hide-status 1 显示git仓库提示 gi...

  • Xcode Instruments调试时不显示具体方法名的解决方案

    首先不显示方法名的原因是没有生成dSYM文件或者Instruments没有找到dSYM文件,没有dSYM文件就没法解析方法名,所以只能显示地址。...