ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    修改 Swift PlayGroud 快捷键

    Jun 27, 20222 min read
    • Open System Preferences > Keyboard.
    • Select Shortcuts.
    • Select App Shortcuts, then click "+". Select Xcode for the Application, type Execute Playground for the Menu Title (must follow the text exactly, else it might not work), then input ⌘R as the keyboard shortcut.

    相关文章

    2023 世界趋势

    2023年世界趋势分析涵盖战争影响、AI技术发展、数据隐私与反垄断、VR/AR技术、新能源与环保、远程办公、人力资源竞争、Web3与加密货币、内容产业、编程语言与数据库技术,以及新冠疫情的影响。

    解决 Two output files share the same path but have different contents

    解决两个内容不同的文件共享同一路径的问题,需检查包名大小写并清空lock文件后重新生成。

    SwiftUI 如何使用 listRowBackground() 设置列表行的背景色?

    使用 `listRowBackground(modifier:)` 方法可以设置 SwiftUI 列表行的背景色,如示例中设置为红色。

    Verdaccio npm 私有仓库的部署和使用

    Verdaccio 是一个轻量级的 NPM 私有仓库,通过安装 Node.js 和 NPM,全局安装并启动 Verdaccio,然后设置仓库地址,注册用户,发布和安装包,可以实现团队间的依赖管理和加速公共仓库的访问。

    Flutter 点击空白处回收键盘

    Flutter应用中通过GestureDetector的onTap事件检测空白处点击,若当前焦点不是主要焦点,则调用unfocus()方法回收键盘。