Skip to content

Instantly share code, notes, and snippets.

@jyshnkr
jyshnkr / Rename Xcode Project.md
Last active February 4, 2026 08:10
How to Rename the Xcode Project (Including all the files & folders)

Rename the Xcode Project (Including Files and Folders)

Step 1 - Rename the project:

  1. Click on the project you want to rename in the "Project navigator" in the left panel of the Xcode window.

  2. In the right panel, select the "File inspector", and the name of your project should be found under "Identity and Type". Change it to your new name.

  3. When the dialog asks whether to rename or not rename the project's content items, click "Rename". Say yes to any warning about uncommitted changes.

// Creates breakpoints every 100px up to 1900
// Usage: respond(2) makes a media query with min-width 200
// respond(16, ie) makes a media querey for 1600 on up AND IE8
@mixin respond($size, $ie:false) {
$i: 1;
@while $i < 19 {