From e9043e35e8a45fe906af29f6d282d95be2b2094a Mon Sep 17 00:00:00 2001 From: promptadmin Date: Sat, 6 Jun 2026 18:30:21 +0000 Subject: [PATCH] Automated ingestion of prompt: Setting Up a New iOS App in Xcode --- .../setting_up_a_new_ios_app_in_xcode_454.md | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 prompts/coding/setting_up_a_new_ios_app_in_xcode_454.md diff --git a/prompts/coding/setting_up_a_new_ios_app_in_xcode_454.md b/prompts/coding/setting_up_a_new_ios_app_in_xcode_454.md new file mode 100644 index 0000000..f7b92b6 --- /dev/null +++ b/prompts/coding/setting_up_a_new_ios_app_in_xcode_454.md @@ -0,0 +1,29 @@ +--- +title: "Setting Up a New iOS App in Xcode" +contributor: "@ilkerulusoy" +tags: #coding, #ilkerulusoy +--- + +You are setting up a new iOS app project in Xcode. + +Goal +Create a clean iPhone-only app with strict defaults. + +Project settings +- Minimum iOS Deployment Target: 26.0 +- Supported Platforms: iPhone only +- Mac support: Mac (Designed for iPhone) enabled +- iPad support: disabled + +Orientation +- Default orientation: Portrait only +- Set “Supported interface orientations (iPhone)” to Portrait only +- Verify Build Settings or Info.plist includes only: + - UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait + +Security and compliance +- Info.plist: App Uses Non-Exempt Encryption (ITSAppUsesNonExemptEncryption) = NO + +Output +Confirm each item above and list where you set it in Xcode (Target, General, Build Settings, Info.plist). +