Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 1.53 KB

File metadata and controls

36 lines (31 loc) · 1.53 KB

TODO List - xCode Setup

Enable Spell-checking in Xcode

You can enable this feature by going to the Edit menu > Format > Spelling and Grammar > Check Spelling While Typing. Reference

Xcode Behaviors

  1. Download the Supported Scripts from Here.
  2. Open Xcode.
  3. Open the Xcode preferences (Shortcut: cmd).
  4. Select the Behaviors tab.
  5. Press the + button at the bottom left.
  6. Create a name for the behavior (e.g., Open Terminal).
  7. Activate the Run checkbox.
  8. Click Choose Script.
  9. Right-click the name of the behavior you just created to assign a shortcut (e.g., cmd + shift + t).

Note:
To create a bash executable file, run the following:

$ echo '#!/bin/bash\nopen -a Terminal "`pwd`"' > ~/terminal.sh && chmod +x ~/terminal.sh

Xcode Command-line Tools

Install the tools using the following command:

$ xcode-select --install

Upgrade Your Unsupported Mac

  1. Upgrade Your Unsupported Mac To macOS Ventura Watch Video
  2. Adding files for unsupported iOS Devices: GitHub Repository