Questions tagged [ios-universal-app]

An iOS universal app is an app that can be run both on iPhone, iPhone with retina screen, iPad and iPad with retina screen.

An iOS universal app is an app that can be run both on iPhone, iPhone with retina screen, iPad and iPad with retina screen.

Developer guide for Creating a Universal App

284 questions
0
votes
2 answers

App crashes when creating Universal app with multiple XIB and single View Controller

I created a Universal window app in Xcode 4.3.3. Later I added one View Controller(UniversalRootViewController) class without XIB. Then I created two XIB files(RootViewController_iPhone, RootViewController_iPad) and then connect these iPhone XIB…
smily
  • 357
  • 1
  • 7
  • 18
0
votes
1 answer

What is the proper design pattern for a Universal app that makes use of iPad-only components?

I'm adding universal support to an iPad-only app. The first screen has a view containing a button for accessing app settings. Currently, in the iPad-only version, the settings appear in a UIPopoverView, and the UIPopoverController is a property of…
GoldenJoe
  • 7,874
  • 7
  • 53
  • 92
0
votes
3 answers

Universal UIViewController

Please help me, I never made universal UIViewControllers with xib for iPhone/iPad. How I can create class with .m and .h files and _iphone.xib and _ipad.xib? I was try to create xib manually and create outlets for view, but after pushing this…
Alexander Zakatnov
  • 1,646
  • 1
  • 15
  • 16
0
votes
1 answer

The subviews of universal application

I have an universal application and the frame of the subviews in the code set for iPhone, and I saw that putting the iPad simulator the subviews are the same size. Therefore the iPad I have to rewrite all the frame or are there shortcuts? This is…
Ortensia C.
  • 4,666
  • 11
  • 43
  • 70
0
votes
1 answer

Selecting photo from cam roll on ipad requires pop over controller error

Im converting an an iPhone app to universal. One of my functions requires picking a photo from camera roll from a button in a table view controller. Im getting an error saying I need to use a pop over controller to do this. On iPad,…
JSA986
  • 5,870
  • 9
  • 45
  • 91
0
votes
3 answers

How to temporarily disable iPad support

I have built a universal iOS-app. The iPhone part is ready to go, the iPad part still needs more work and should not be shipped. How can I build a version of this project resulting in a binary that only contains the iPhone version? Simply removing…
murze
  • 4,015
  • 8
  • 43
  • 70
0
votes
2 answers

Universal iPhone/iPad application

I know, how to detect whether it iPhone or iPad if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) I know 2 ways to build universal app: 1) use one controller for 2 xibs (iPhone/iPad) 2) use different viewcontrollers for iPad and…
Paul T.
  • 4,938
  • 7
  • 45
  • 93
0
votes
1 answer

How do i design an iOS universal application for differing 'view' schemes?

I'm working on building a universal iOS configuration application for the iPhone/iPad. But the layouts ('views') for the iPad are considerably different from that of the iPhone. Considering that only the appearance of the application ('views')…
Sagar
  • 555
  • 9
  • 24
0
votes
1 answer

How to solve the errror "image not found"?

I am working on universal project(iPhone/iPad), in which the code that I used is same on iphone and ipad. The code is working well in iphone and not working in iPad. It returns the following error. dyld: Library not loaded:…
iPhone_suren
  • 181
  • 1
  • 3
  • 13
0
votes
1 answer

Making Universal game for iPhone and iPad (regular and Retina)

I am making games on Cocos2d Engine and I have to make a Universal Game. The practice I am following is described below. I have a set of 2 Images , one is Non HD and other is with -HD mentioned below. Example: image1.png -> I am using this just…
0
votes
1 answer

iOS: How to share documents between iPad & iPhone versions of app?

I was under the impression that when Apple rolled out universal apps, that a sharing mechanism was provided to sync files between the same app installed on more than one device. However I don't see much evidence of this. What am I missing? (Note I…
Mithras
  • 81
  • 1
  • 1
  • 6
0
votes
1 answer

Universal Xcode Camera Roll App Issue

I have a universal app in Xcode. If the user is using an iPad the use image from library button works great. However if they use an iPhone the button doesn't work. Here is the error I receive. Terminating app due to uncaught exception…
0
votes
0 answers

Xcode 4.2 Universal Application Issue

I have created a universal application using xcode 4.2 and iOS 5 SDK. Application runs fine when i run it for iPad but i am facing issue while running it for iPhone . Code is in place to detect device idiom but still when i run application for…
0
votes
2 answers

universal application retina image performace on iphone

For universal application if only ipad retina images are used , then would thier be a performace degrade for iphone ? since iphone would be using same images , just UIImageview would be scaling it according to screen size . Regards
H Bastan
  • 259
  • 1
  • 2
  • 11
0
votes
1 answer

ActionSheet causing mutliple UIPopovers to show on iPad

I have a universal app and have an action sheet with a few buttons. When I tap the add button (navigationItem.right) I want it to show in a popoever. It does this correctly, however, with the actionSheet tied to the barbutton item, it allows me to…
Bot
  • 11,868
  • 11
  • 75
  • 131