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
5
votes
1 answer

Getting build error: Unable to write to path after transition to Universal app

I have an existing iPhone app (iOS6, ARC, Storyboards, XCode5) that I am trying to convert to Universal. I did a Duplicate and Transition to iPad, then did a build. This is what I got: Compilation failed. Unable to write to path:…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
5
votes
3 answers

setPreferredContentSize error in ios app

Creating "IOS Project" in xcode 5 causes the following when launching for iPad simulator. The application works for iPhones configuration. I have set the target to be 5 and later and removed autolayout as its not compatible with ios/xcode 5. I get…
dhaval
  • 2,368
  • 9
  • 35
  • 60
4
votes
3 answers

Universal cocos2d game to support iPad3

How would the image resources be named for the ipad & ipad HD versions in a universal app? When supporting normal and HD images for iphone we use imageName.png & imageName-hd.png. But if I make an universal am I right in assuming that I would have…
AbhinavVinay
  • 303
  • 6
  • 18
4
votes
2 answers

Using different storyboards for different screen sizes? universal xcode app

I submitted my app for review and got the error 2.10 - iPhone Apps must also run on iPad without modification, at iPhone resolution, and at 2X iPhone 3GS resolution. We noticed that your app did not run at iPhone resolution when reviewed on iPad…
Grace
  • 377
  • 3
  • 19
4
votes
2 answers

How to implement a UINavigationController for modal presentation, not for popover, with an adaptive segue

While using a universal storyboard and adaptive segues, how can one implement a Present As Popover segue that will have a navigation bar (with a title and close button) only on iPhone when presented modally, and will not have a navigation controller…
Jordan H
  • 52,571
  • 37
  • 201
  • 351
4
votes
0 answers

iPad specific resource suffix doesn't work with storyboards

According to the Apple's Resource Programming Guide you should be able to use device modifiers for any kind of resource file Here's the quote You can apply device modifiers to any type of resource file. However while this seems to work for most…
Jack
  • 10,943
  • 13
  • 50
  • 65
4
votes
1 answer

Changing app type from iPhone to Universal in iTunes Connect

I have submitted an iPhone app to Apple. It was rejected because it did not run on an iPad. I traced the problem to iAds and have fixed it. Now however, I find that the iAds do not appear on the iPad (that has been reported on a different question…
3
votes
2 answers

Develop iPad Version or iPhone Version first?

I have just finished developing an iPhone app and now I wish to make it a Universal App. I'm having issues incorporating a UISplitView into my current code to accommodate multiple detail views. I have looked at Apple's MultipleDetailViews sample…
Matt
  • 161
  • 9
3
votes
0 answers

Disable SplitViewController only on iPhone - Swift

I'm working on an universal iOS app and I'm using SplitViewController. I have been trying to disable the splitView on iPhone 6+ and 6s+ in landscape mode but nothing seems to work. I attempted to override the UITraitCollection by setting its…
bachman
  • 690
  • 7
  • 22
3
votes
1 answer

Develop universal app in iOS

I want to develop universal application in iOS. But for now I am planning to upload only iPhone version of app on App Store and after some days I will upload iPad version. My question is, Should i keep Devices as "Universal" or only "iPhone" for…
Rakesh
  • 1,177
  • 1
  • 15
  • 31
3
votes
1 answer

The apple-app-site-association file was found but it doesn’t follow the required format

I'm using this API Validation Tool from Apple and I got 6 of 7 validation PASSED in a specific page but "Universal Links" test got this message: "The apple-app-site-association file was found but it doesn’t follow the required format. Learn how to…
Beto
  • 3,438
  • 5
  • 30
  • 37
3
votes
2 answers

How to know the current size classes and if my button is displayed?

I use size classes in my projet. I have a button, which is displayed only for Compact Width and Compact height Compact width and Regular height This button isn't displayed for other size classes. On this button I apply a specific effect. But I…
cmii
  • 3,556
  • 8
  • 38
  • 69
3
votes
1 answer

Storyboard: assign IBOutlet for multiple object per size class

Since Apple introduce Size Classes, whew, routine work might gone, I thought. Going further, realised it's not so easy, so comfortable like it seemed to be. My real purposes a bit different by I've set-up test project for illustration: I have one…
Injectios
  • 2,777
  • 1
  • 30
  • 50
3
votes
3 answers

how to check device is ipad or iphone in appdelegate for xib's?

Here is my didFinishLaunchingWithOptions: Currently my app is only for iPhone but i want this in both(universal). - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window =…
Mihir Oza
  • 2,768
  • 3
  • 35
  • 61
3
votes
2 answers

Universal App using Health Kit

I'm working on an App which uses some new iOS 8 Health Kit (HK) features. At present the iPad doesn't get the Health app, so can't use HK. Since the HK features are not a major part of my app functionality, I could happily leave them out of the…
CPourrier
  • 33
  • 3
1
2
3
18 19