How To Take an Xcode Simulator Screenshot without Shadows

See how to take a ready to use screenshot of the Xcode Simulator embedded in the device bezel without any shadow or toolbar.

Francesco Leoni

1 min read

Adding a bezel to a screenshot may be a cumbersome task.

Wouldn't it be better to just take a screenshot of your app embedded in a bezel?

This is possible and really easy.

Let's see how.

Take the screenshot

The problem with taking a screenshot at the Xcode simulator is that it has shadows and a toolbar, those shadows that won't allow you to cut away the toolbar because otherwise you will crop the shadows as well. Arg!

Wouldn't it be better to remove the shadows all together?

This is possible! Here's how.

  1. Hold cmd + shift + 5
  2. Select the second option Capture Selected Window
  3. Now, hold the option key and take the screenshot of your simulator
  4. Open the screenshot with the Preview app
  5. Select the portion of screenshot you need
  6. Select the Markup Toolbar and choose the crop tool, the last one
  7. Save and enjoy your perfectly cropped screenshot!

If you have any question about this article, feel free to email me or tweet me @franceleonidev and share your opinion.

Thank you for reading and see you in the next article!

Share this article

Related articles


Fix “Build input file cannot be found“ Error in Xcode

See how to fix the “Build input file cannot be found“ error in Xcode. It can be caused by different reasons.

1 min read

Q&AXcodeErrors

Error “Missing file libarclite“ (Xcode 14.3)

See how to fix the “Missing file libarclite“ error in Xcode. This is due to libraries with minimum deployment target of iOS 11.

1 min read

ErrorsQ&AXcode

Format Functions to Multiple Lines in Xcode 15

Make you code easier to read formatting your functions to multiple lines with the option 'Format to Multiple Lines' in Xcode 15.

2 min read

Xcode