As my iPhone
app is working perfectly on iPhone with full screen but when i try to run the app in iPad
it shows with the iphone screen. Is it possible to run the app in full screen without jailbreaking the iPad
or using the double pixel method ?
Asked
Active
Viewed 126 times
0

iPatel
- 46,010
- 16
- 115
- 137

Tanya Prashar
- 27
- 2
- 6
-
is this question anyway related to developers? – P.J Mar 08 '13 at 08:08
-
http://stackoverflow.com/questions/5580935/converting-iphone-app-to-a-universal-app-in-xcode-4 – iPatel Mar 08 '13 at 08:08
2 Answers
0
Well, you need to actually create one version for iPad, with the corresponding XIB's and classes and other functionalities you might want to add. Remember that an iPad version is more than justa bigger version of the iPhone one...

Rui Peres
- 25,741
- 9
- 87
- 137
-
Well..in my app i am already having two different versions of xib's for iPhone as well as for iPad...since i choose the universal device while creating the project.... – Tanya Prashar Mar 08 '13 at 08:56
-
In build settings of the project I change the target device family from iPhone to iPhone/iPad...still not displaying in full screen – Tanya Prashar Mar 08 '13 at 09:20
0
This Question ask in earlier But read this Official Documentation This might be help flu for you..other option is Search in GOOGLE is best way for getting more ways for create Universal App. Also This site is related to Your Question.

iPatel
- 46,010
- 16
- 115
- 137
-
you can also give vate for Duplication question rather then given Answer. – Nitin Gohel Mar 08 '13 at 08:12
-
@NitinGohel this is for info... why i give downVote to OP he/she new at here :) – iPatel Mar 08 '13 at 08:15
-
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { CGRect rect = [[UIScreen mainScreen] bounds]; [window setFrame:rect]; } – Tanya Prashar Mar 08 '13 at 09:23