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

How to Create Universal Iphone/Ipad App in Separate Classes?

I am Creating a Universal App for both Iphone and Ipad. But i don't need to have same class for both Iphone and Ipad. I need to have a separate classes for each Iphone and Ipad. Can any one give me idea How to do that? I already created my app using…
Sameera Chathuranga
  • 3,638
  • 3
  • 27
  • 48
0
votes
1 answer

Convert iPhone app to Universal app on xcode 4.2

I use the xcode 4.2 duplicate target feature to create iPad target, which also created Resources-iPad folder with all the iPad xib files. Now I have two Targets: myApp myApp-iPad two Resources: Resources Resources-iPad I also set myApp project…
HardCode
  • 2,025
  • 4
  • 33
  • 55
0
votes
1 answer

Code and suffix for retina universal iPhone apps?

I am planning to make a universal app to support retina display. It will be a quiz with more than 100 questions. So, for the bg images the suffix will be: iPhone, iPod:320X480 = photo.png, retina iPhone, iPod: 640X960 = photo@2x.png iPad:…
George
  • 73
  • 1
  • 1
  • 6
0
votes
3 answers

Creating universal app for Xcode 4.3?

I am little bit confused about creating universal application for iOS devices using Xcode 4.3 , later versions (Xcode 4) have separate folder classes for this, but how will we make this using newest version of Xcode? Thanks in advance
Neeraj Neeru
  • 570
  • 8
  • 28
0
votes
4 answers

why does an iOS universal app need to have two different xib files?

I'm a newbie of iOS development and I'm confused regarding universal app. We can use the same code, same xib file for iPhone 4(retina) and previous iPhones, but why we should write two different xibs for iPhone and iPad? What's the difference? For…
softempire
  • 135
  • 7
0
votes
2 answers

Scroll View content size in ipad Universal app?

I set the Scroll view size to scroll up the content if they hide behind the Keypad. Its a universal app now I am doing same for iPad. What would be the height/width of ipad screen and How do I set these for ipad? code to check if its Ipad or…
Azhar
  • 20,500
  • 38
  • 146
  • 211
-1
votes
1 answer

Detect orientation when loading a view

I'm developing a universal app. When my device is ipad I have 2 designs: Portrait and landscape. I use this method: -(void)orientationDidChanged:(NSNotification *)notification It works perfectly when I rotated my device. But I have a problem, when…
-1
votes
1 answer

SpriteKit scale for universal app

What is the best practice to universal app? Make iPad version and them scale to iPhone ? is a good idea? if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) { viewSize.height *= 2; viewSize.width *= 2; …
pbeo
  • 399
  • 1
  • 4
  • 14
-1
votes
2 answers

switching to uitabbarcontroller (having views with customised header) after custom splashscreen (UIViewController) is loaded without storyboard

I am making my application without storyboard. Where I have a custom splashscreen which is made in uiviewcontroller and I am parsing some csv files while splash screen is loading which I have implemented. As the parsing is completed I want to make a…
-1
votes
1 answer

Universal Empty Application with Storyboards

I know many questions related to this topic has already been asked and answered but none of them completely resolved the issue I'm facing. And there there are too many suggestions so I'm pretty confused what to use and what not to. Anyway here's my…
Isuru
  • 30,617
  • 60
  • 187
  • 303
-1
votes
2 answers

presentViewController SIGABRT

I am working on a universal app, when trying to select a photo from the devices library on the iPad I get a SIGABRT error, but it works fine on the iPhone picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; [self…
user906357
  • 4,575
  • 7
  • 28
  • 38
-1
votes
1 answer

How to submit universal application

Recently, my first iPhone app is approved. I decided to convert it to a universal app, and since it is a basic application I did it easily. I'll resubmit the app today, but I have some concerns about the process. Idea 1) Creating a new application…
mamba4ever
  • 2,662
  • 4
  • 28
  • 46
-2
votes
4 answers

Can I build a Universal App that's targeted for different OS versions on each device?

I want to make a Universal app, for iPhone supporting iOS 5 and for iPad but supporting iOS 6 and later Is it possible to do this with the same Xcode project/app build? I want to use UICollectionView with UICollectionViewWaterfallLayout in the iPad…
-3
votes
2 answers

Universal App about view controllers

i just want to ask about the universal app that i have created a universal app with two different storyboard one for iphone and other for ipad , lets assume i created a viewcontroller in both storyboards called mainview so should i create different…
Ramiz Girach
  • 169
  • 2
  • 10
1 2 3
18
19