Tagged Questions
The universal-binary tag has no wiki summary.
63
votes
5answers
11k views
How can we restore ppc/ppc64 as well as full 10.4/10.5 SDK support to Xcode 4?
Since Apple only ships SDK 10.6 with Xcode4, developing PPC applications with Xcode4 became impossible. While it is possible to develop applications with Xcode4 that can also run on 10.5 and maybe ...
11
votes
4answers
7k views
How should I approach building a Universal iOS app that will include iOS 4 features, even though the iPad doesn't yet run iOS 4?
I'd like build a game for both the iPhone and iPad. As such, it would make sense to start this project from scratch as a universal app. However, iPhone and iPad currently run two different versions ...
7
votes
2answers
3k views
Converting iPhone app to a Universal app in Xcode 4
I am trying to upgrade my existing iPhone app project to an Universal app but I can not find any option in Xcode 4 to do so. Where is it?
7
votes
1answer
903 views
Unable to link ppc after upgrading to XCode 4
I followed these instructions on how to get the 10.4 SDK working with PPC after upgrading to XCode 4. I am able to compile, but it errors out at link time.
As an added wrinkle, I'm not using XCode ...
7
votes
2answers
2k views
convert ipad app to run on iphone (universal app)
I have a working iPad app which I now need to make work on iPhone. I've been reading around a fair bit on this, but haven't found a good answer. On this site, I saw some discussion... but again, no ...
7
votes
2answers
1k views
How to compile universal libraries on Mac OS X?
This may be a very silly question, but I'm new to developing on Macs and am having a hard time with the universal binaries.
I've got an application that I'm compiling in QT Creator, which according ...
7
votes
2answers
8k views
Building/Testing a Universal iPhone/iPad application
I have a project configured (I think) to produce Universal binaries. The base SDK is set to 3.2 and the Deployment Target is set to 3.1. Target Device Family is iPhone/iPad and the architecture is ...
6
votes
3answers
4k views
How to build universal ios static library
I'm trying to build a static library that I can use with both ios3.x and ios4.x. I can build a static library with ios3.0 that works with another project in ios3.0 but won't compile in ios4. The same ...
6
votes
1answer
304 views
Device-Specific Resources in iPhone
According to the iOS Reference Library:
In iOS 4.0 and later, it is possible
to mark individual resource files as
usable only on a specific type of
device.
Does this mean that if you're ...
5
votes
5answers
797 views
iOS Development: How can I prevent an iPad from running a universal app in iPad mode?
I'm diving into iOS development and I created a universal app that turned into an iPhone-only app. When it runs on the iPad, it just loads a white screen since there's no iPad code written yet. What ...
5
votes
2answers
1k views
Mac 10.6 Universal Binary scipy: cephes/specfun “_aswfa_” symbol not found
I can't get scipy to function in 32 bit mode when compiled as a i386/x86_64 universal binary, and executed on my 64 bit 10.6.2 MacPro1,1.
My python setup
With the help of this answer, I built a ...
5
votes
2answers
2k views
Run an OS X universal binary in 32-bit mode
I have a third-party library (the interface to Xerox's Finite State tools) which come as universal binaries with two variants internally: a PPC and an i386 variant. I also have a Python interface to ...
4
votes
2answers
84 views
Is there a (maybe official) checklist and guide for submitting an app to the App Store?
I submitted one almost 2 years ago and remember next to nothing. Just that it was very hard and that about a gazillion things had to be considered.
Now we have a universal iPhone / iPad binary.
...
4
votes
3answers
233 views
Windows 8 fat binary (exe for x86 & ARM)
Does anyone (here) know if Windows 8 will have a sort of fat exe that one can compile with VS2011 that will be supported on both ARM and x86 machines? I am guessing not, since you can't create fat ...
4
votes
3answers
7k views
How do i compile a static library (fat) for armv6, armv7 and i386
I know this question has been posed several times, but my goal is slightly different with regard to what I have found searching the web. Specifically, I am already able to build a static library for ...
3
votes
1answer
320 views
What are best practices for universal app vs. separate targets?
Are there any well established criteria to help decide between building a universal iphone/ipad app versus building separate targets that share some code?
I have an iPad app working fine and now have ...
3
votes
2answers
360 views
iOS: Universal App - Release as iPhone only
A customer is interested in releasing a universal app. However, the first release will contain only the iPhone version, the second release will contain both versions.
I found a few links where ppl ...
3
votes
4answers
388 views
iPod Touch 4G thinks it's an iPad
I have a universal app built that runs and works perfectly on an iPad, iPhone 4G, 3GS & 3G, but when run on an iPod Touch 4G it won't run properly.
I don't have a iPod Touch to test, but I have ...
3
votes
3answers
410 views
Universal App (iPad+iPhone) targeted to older (iOS < 4) devices - conditionally adopt a protocol?
I'm writing an Universal App that will run natively on both iPad and iPhone. I also need it to be targeted to older devices (those that cannot run 4.0) so 3.1 is a must.
I have already set up the ...
3
votes
2answers
723 views
Turning an iPad app into a universal app
I've created an iPad app, and want to turn it into a universal app (i.e. one app that works for iPhone and iPad). The Apple docs seem to only talk about the "Upgrade Current Target for iPad" option. ...
3
votes
2answers
2k views
How to port existing iPhone application to iPad
I have an iPhone application, now i want to convert that application to a universal application which runs on all the devices iPhone/iPod/iPad.
So, where to start, what things i need to do?
Any ...
3
votes
1answer
2k views
g++ on MacOSX doesn't work with -arch ppc64
I am trying to build a Universal binary on MacOSX with g++. However, it doesn't really work. I have tried with this simple dummy code:
#include <iostream>
using namespace std;
int main() {
...
3
votes
1answer
3k views
Turning Separate iPad/iPhone Targets into Universal App
When I started my universal application, I thought the one target option would be too much work, so i opted for separate targets. I realized halfway through making the iPad portion of the app, that ...
3
votes
3answers
3k views
Building iPhone static library for armv6 and armv7 that includes another static library
I have an Xcode project that has a "master" static library target, that includes/links to a bunch of other static libraries from other Xcode projects.
When building the master library target for ...
3
votes
4answers
658 views
check CPU type at RUN time for C program on MAC
How does a C program determine, at RUN time (not compile time),
whether it's running on Little-Endian or Big-Endian CPU?
The reason why it must be "run-time" check, not "complie-time", is because I'm ...
2
votes
2answers
93 views
iOS Universal App - Access different Nibs for iPad and iPhone
I am writing my first universal app, I have converted my nibs so that there are iPad and iPhone versions.
The iPad version is in the Resources-iPad folder and called 'InfoViewController-iPad.xib'. ...
2
votes
1answer
156 views
How do you extract values out of ARM ASM bits?
In IDA Pro I see the ARM ASM listed below. What bits is IDA using to get 7200?
A3 F5 E1 53 SUB.W R3, R3 #7200
For convenience the values are binary are as follows
7200 = 0x1c20 = 0001 1100 0010 ...
2
votes
1answer
457 views
Using Xcode 4 to create Universal binary
I've used this hack to restore PPC support to Xcode 4.
However, every time I tried to create a universal binary, it would just create an Intel binary. After a lot of experimentation with parameters, ...
2
votes
3answers
343 views
Naming conventions for Universal Applications
I'm writing a universal iOS application (iPad and iPhone) and find myself with massively long names for classes that can't be shared between the two apps:
FamilyViewController_iPhone.h/m
...
2
votes
1answer
1k views
UIGestureRecognizer in iOS 3.1.3?
I am working on making an existing iPhone/iPad project backwards compatible down to iPhoneOS 3.0.
My current test device is an iPod Touch with 3.1.3 on it.
The following bit of code is causing ...
2
votes
1answer
1k views
Creating universal binary using XCode 4.0
I have installed XCode 4.0 in my system recently. I need to create universal binary for one of my Desktop app. How do I do this in XCode 4.0?
Thanks and Regards,
Deepa
2
votes
1answer
168 views
Documents directory in Universal apps
If an user has an iPad and iPhone, and synchronizes an Universal app which has stored files in the Documents directory in one of these devices (say iPhone), do these files become available to the ...
2
votes
1answer
1k views
Is it safe to check for UI_USER_INTERFACE_IDIOM() to determine if it's an iPhone or iPad?
I've found this code, here:
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
str = [NSString stringWithString:@"Running as an iPad application"];
} else {
str = ...
2
votes
2answers
141 views
Aren't universal binaries a huge waste of memory on the device?
While working on an universal binary for iPhone / iPad, I've been asking my self often: Is this really so good? I believe the iPhone and iPod touch devices will simply download the whole package, ...
2
votes
2answers
570 views
Universal App won't run on iPad Simulator
I have an existing iPhone app that I'm trying to convert into a universal app for both iPhone and iPad. Everything seems to work fine when I run it on an iPad device, but I get the following runtime ...
2
votes
2answers
264 views
Share NSUserDefaults in universal binary between iPhone and iPad Versions
This is my first stab at creating two targets within one project for iPhone and iPad.
My question is, if I save an array to NSUserDefaults, and the iPhone syncs with iTunes, and then I sync the iPad, ...
2
votes
1answer
294 views
How can I force qtcreator to create non-universal binaries
When I use qtcreator on mac, it creates universal binaries.
Does anyone know how to set it so it just creates a 'native' binary? (So i386' in my case?)
Qtcreator uses qmake as a buildsystem.
...
2
votes
1answer
807 views
Universal iPhone/iPad project with iAd framework
how can I set up a Universal project which has support for iAd (just in the iPhone app)?
Using the iPhone SDK 4, let's suppose I do the following steps:
Open XCode;
Go to File > New Project ;
...
2
votes
1answer
333 views
iPhone/iPod & iPad - Limitatios about Universal applications
Are there any limitation in writing universal application for iPhone and iPad ? (or the choice it's only about the code re-usability/design )
2
votes
3answers
1k views
How to keep iPhone app out of iPad store?
I have an iPhone app that I have started to turn into a universal app, however the process is not complete and I want to release an update to the iPhone version.
I know that you can specify device ...
2
votes
3answers
1k views
compile Boost as static Universal binary lib
I want to have a static Universal binary lib of Boost. (Preferable the latest stable version, that is 1.43.0, or newer.)
I found many Google hits with similar problems and possible solutions. ...
2
votes
2answers
2k views
Submit an universal app as iPad only app to Apple
I created an universal app with the window template in xcode. Now I want submit just the iPad version of my app, because the iPhone version is not yet fully programmed.
How is this possible? What do ...
2
votes
4answers
1k views
Create a “Universal Binary” from two apps?
Short question: How do you take two apps, one for intel and the other ppc, and package them into one Universal Binary?
My current thoughts on this problem:
I have read though the apple developer ...
1
vote
2answers
63 views
Universal Binary supporting i386, x86_64 and PPC
Can you build an OSX program supporting i386, x86_64 and PPC at the same time?
1
vote
0answers
120 views
How to add a UISplitViewController to a window-based app
If I create a new project in Xcode 3 - a "Universal" window based project, I can't seem to instantiate the UISplitViewController outlet I am adding to the iPad's XIB.
Starting with a brand new ...
1
vote
0answers
78 views
Switching a live App Store app from Universal to arm7 only
Let's say I have an application in the App Store that has been approved and has been available for sale for some amount of time. The application is a universal (arm6+arm7) binary. Now I want to ...
1
vote
1answer
152 views
How to change UIToolbar button icons to hi-res on a Universal app if the device supports retina display?
I am working on a Universal app, there is a UIToolbar with the 20x20px icon as images, but I need to switch this to their hi-res counterpart (40x40px) if the device supports retina display, any tips ...
1
vote
5answers
396 views
iOS Universal App question
I have submitted my iPad app to apple and got approved. Now, i want to add iPhone support to the App.
My question no.1 is:
Q1. is it possible to make the app universal at this moment after ...
1
vote
0answers
349 views
Universal app not showing up for ipad after download from appstore [closed]
I already had an application for iphone in app-store.
I submitted an update with universal binary. I have tested the updated binary on ipad and iphone and it works fine as expected.
My updated binary ...
1
vote
2answers
155 views
Universal Application for IPhone/Ipod Touch 4th gen only + IPad
I'm developing a Universal Application that's only meant to be used on Retina display IPhone/IPod touch devices + IPad. How can I specify this on the plist or anywhere else in my app/binary?
...