1

I started developing an application in a universal configuration, but later the requirement changed and the application turned out to be iPhone only. Now how do I change the application configuration to fulfill this criterion?

jscs
  • 63,694
  • 13
  • 151
  • 195
Raj Pawan Gumdal
  • 7,390
  • 10
  • 60
  • 92

4 Answers4

5

if u're using xcode 4.2

  • navigate to project navigator
  • select your project
  • selct target > your project's name > summary
  • change the devices from "universal" to "iphone"
Yonathan Jm
  • 442
  • 3
  • 12
4

If you're using Xcode 5.0

  • Select Project Navigator
  • Select your project file
  • Make sure your project file is selected and not a target
  • Select the Build Settings tab
  • Scroll Down to deployment section and search through that for "Targeted Device Family" or search that key term in the search field at the top
  • Change iphone/ipad to iphone only
A'sa Dickens
  • 2,045
  • 1
  • 16
  • 21
2

If you're using Xcode 6.0

  • Select Project Navigator
  • Select Your Project File
  • Select the General Tab
  • Scroll down to deployment info
  • Select Device drop down and change to Universal to iPhone only
A'sa Dickens
  • 2,045
  • 1
  • 16
  • 21
1

see this link,it will help you to solve your problem

“Downgrading” a Universal iPad/iPhone app to iPhone only

Adil Soomro
  • 37,609
  • 9
  • 103
  • 153
Mudit Bajpai
  • 3,010
  • 19
  • 34