The universal tag has no wiki summary.
11
votes
2answers
209 views
Is there a problem in perl 5.12.2 using splice on @ISA?
The following is a debug session on Perl 5.12. Does this make any sense? Does UNIVERSAL cache a version of the @ISA variable, which if forever uses thereafer. Back before Class::ISA was deprecated, I ...
8
votes
7answers
916 views
Universal Turing Machine Problems
If I have a machine, call it machine 1, that is able to solve a problem: it's just a machine, not per se a Turing machine. It can solve one specific problem.
If this exact same problem can be solved ...
5
votes
2answers
126 views
Programming a Universal App in iOS
When I am programming a universal app, lets say I have an IBAction like so:
(IBAction)magicCode:(id)sender {
textField1.text = "TEST";
}
Do I need to create a new IBAction for each view (iPad ...
4
votes
1answer
228 views
Merging existing iPhone and iPad app ids into a single universal app id
I have an existing iPhone app and an iPad app, now I have created a Universal app, and I want to know if there is any way to kind of "merge" the existing app Ids, so I can upload my new app as an ...
4
votes
2answers
381 views
iAd — cannot click banner
I am creating a universal-app template.
This template will need to support optional iAds, and optionally all orientations.
I coded up a solution only to find a bizarre bug. in certain situations ...
4
votes
2answers
284 views
Is there a global way to merge an iPhone and an iPad app into a universal app?
I wrote an iPhone app. Then, I changed the interface a fair bit, added higher res images, and made an iPad version of it. In a perfect world, I would like for anyone who buys the iPad version to get ...
4
votes
4answers
5k views
Dynamically load nib for iPhone/iPad within view controller
I have converted an iPhone application using the wizard like thing in XCode into a universal app.
It builds fine but obviously looks a bit rubbish in some areas :)
I need to load nibs according to ...
4
votes
4answers
2k views
iPhone check for a constant at runtime in universal app
I'm making a universal iPad/iPhone app which can use the iPad's VGA out connector to mirror the content of the app on an external screen. However, the iPhone does not have this functionality. ...
3
votes
3answers
184 views
Converting an iPhone app to a Universal app?
I have an iPhone app with
FirstViewController and SecondViewController with respective views FirstView.xib and SecondView.xib.
Now I want to make this app work with both iPhone and iPad. For iPad I ...
3
votes
3answers
2k views
Trouble with loading a separate XIB for iPad or iPhone
Im having trouble figuring out how to load a separate XIB for iPad or for iPhone in a Universal app.
Its easy enough to convert the Xcode project to Universal and have separate Main view interfaces.
...
3
votes
2answers
236 views
iPhone - How to transform an iPhone only app to universal app?
how can i transform an iPhone only app to an universal application?
EDIT : FOUND SOLUTION
If you want to have the "Upgrade current target to iPad" option selected, you must have Target Device Family ...
3
votes
5answers
141 views
What exactly does Response.Redirect(“~/…”) put in the HTTP response?
I've just finished reading URL vs. URI vs. URN, in More Concise Terms, and it's really helped understand the distinction between the three terms. Since then I've skimmed the RFC2141 and RFC2616 specs ...
3
votes
2answers
423 views
Make Eclipse RCP Intro part of a perspective
For a product we are creating, we want to be able to have the welcome screen display in a perspective (which we are calling "Start Here"). The intro is the only thing that needs to be in that ...
3
votes
2answers
253 views
If you make your iPhone app universal, can you undo it in a future version?
Question title says it all. I've made a universal iPhone/iPad app (transitioned from iPhone only), but in a future version, I'm going to switch heavily to iOS 4-only features.
For the next update of ...
2
votes
1answer
112 views
How To Port an iPhone Application to the iPad (Storyboard)
I just finished my iPhone app and I want to make it Universal. I've read a few posts already but they're a bit old (2010 or so).
What I got:
Simple iPhone app, recently created (iOS 5 - ...
2
votes
1answer
412 views
Making universal apps without Interface Builder
I'm using XCode 4.2, with iOS 5, and would like to make a universal app, not using Interface Builder, as outlined in this post, not using a MainWindow.xib.
I would also like to separate my iPhone and ...
2
votes
2answers
67 views
How to submit universal application on iTunes?
I want to submit application for iPad and iPhone both. first time when i submit application its submitted as iPhone only.
it created for both iPad and iPhone but in itunes its show only as iPhone ...
2
votes
3answers
909 views
Universal iPad/iPhone XIBs - Xcode 4
I want to make a universal app which has two different XIB files. One for iPhone, and one for iPad. They use the same code, just different UIs. How would I create a "universal" app?
Thanks.
2
votes
1answer
227 views
What's the point of the iPad / iPhone app delegates in a universal iOS app?
I've been wondering what i should use these classes for. I would think it's to set up the appropriate main view on the device. By default there's only a dealloc method added to these classes, so I ...
2
votes
1answer
232 views
Trying To Make My App Universal
I have two HTML files on my www folder using the PhoneGap framework. The iPhone/iPod one(/mobile/index.html) and the iPad one(/index.html). So I'm using this code at my AppDelegate.m:
+ (NSString*) ...
2
votes
1answer
472 views
Make iPad-xib from iPhone-xib
I am searching the web for a while now and didn“t find the answer...
is it possible in Xcode4 to convert an iPhone.xib to an iPad.xib when upgrading to a universal-app?!?
in Xcode 3 there was a ...
2
votes
2answers
668 views
UITextView in TableCell, How to set correct Width for Universal app
i am using a UITextView inside a tableView cell in order edit text.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITextField *textName = ...
2
votes
3answers
2k views
Simulator iPhone Retina has wrong screen resolution
I'm trying to write a Universal Application. The display should be slightly different for different screen resolutions. But when I code like this:
- (void)viewDidLoad {
SCREEN_WIDTH=[[UIScreen ...
2
votes
4answers
202 views
Universal meta-language for “simple” programs
I realize that it is impossible to have one language that is best for everything.
But there is a class of simple programs, whose source code looks virtually identical in any language.
I am thinking ...
2
votes
4answers
1k views
EventKit in Universal app (OS3.2)
I made iPhone app with eventkit framework. However, i upgrade to universal app, app can't run in ipad. I got error message
dyld: Library not loaded: ...
2
votes
1answer
773 views
How to create Universal apps in iPhone/iPad?
I want to create a universal apps. I have already done some apps for iPhone. Now i want to start a universal apps which means the app should be runs in iPhone and iPad. I don't have any idea about ...
2
votes
3answers
547 views
xcode's executable product for c++ project
I've completed a simple numbers-version of the game "Towers of Hanoi" using xcode's command line tool in C++. Being accustomed to PC compilers like borland's and visual-c, I've attempted to "share" ...
2
votes
3answers
231 views
How to test for the existance of a constant when creating a iPhone universal binary
I am trying to create a universal binary that supports multitasking on the iPhone 4 and can still run on the iPad.
I know how to avoid compile errors for different versions of the iPhone IOS by ...
2
votes
1answer
578 views
Separate Settings in Universal iOS App?
I'm working on an universal iOS app, but a few user settings don't make as much sense on the iPad.
Can I specify a separate Settings.bundle or Root.plist for use on the iPad?
1
vote
1answer
44 views
Cannot access session state across instances with Universal Session State Provider with SQL
I have an Azure project that contains a web application. It runs with two instances in the compute emulator. I've added the universal provider for session state and am currently pointing it to a SQL ...
1
vote
2answers
88 views
Universal iPhone/iPad app size concern
It is recommended by Apple to make universal apps, i.e. one ipa for iPhone and iPad. If I make a standalone iPhone app, it gets approx. 6Mb. If I make a universal app it becomes approx. 19Mb... For ...
1
vote
1answer
40 views
Resource Management in XCode
I'm wondering is there any way in XCode to control the resources that are included in the project, or more importantly included in the build itself.
What I'm trying to achieve is having a HD version ...
1
vote
2answers
39 views
Load category specific to device
I have an iPhone app that I'd like to make universal, most views can be kept the same, but there are some minor modifications that need to be made for the iPad.
Is it possible to load a category ...
1
vote
1answer
338 views
Xcode: How to drag and drop any object with same code?
I'm building an app for the iPhone and I need to drag and drop allot of different objects.
I have found allot of separate ways to drag and drop UIImageViews, UIButtons etc. But I was wondering if ...
1
vote
1answer
301 views
Converting an iPhone app to Universal in Xcode 4
I could use a little clarity here.
I've opened a project that is a completed iPhone app. Then selected the target, selected "Universal" from the Summary/Devices dropdown, and followed the prompt to ...
1
vote
2answers
127 views
Universal iOS app test iPhone target on iPad device/simulator
I am trying to test the iPhone part of my universal app on an iPad, i am using Xcode 4.1 on Mac OSX Lion
so, i changed "Targeted Device Family" in the targets build settings to be iPhone only.
and i ...
1
vote
3answers
114 views
iAdBannerView_problem
My application is Universal app and i am implementing iAd in this app, Just wanted to know that what is the height and width of the iad banner view for iphone and ipad. I am doing through Xib, when i ...
1
vote
3answers
926 views
iOs device-specific resources not working - ~iPad loading default XIB - universal app
I'm making a universal app based on the Utility App template. I've selected a universal app and the MainView.xib and MainView~iPad.xib work properly on both device types.
On the iPad2, when I ...
1
vote
2answers
145 views
Question about UIWebview and Universal Application
I have an Universal Application and my question is, if it is possible to load two different html files in my UIWebview depending on the iDevice.
Thanks for any answers.
1
vote
2answers
1k views
Starting a new project in Xcode 4 to be Universal (iPad/iPhone)
Starting a new project in Xcode 4 - what's the best way to make it a Universal app?
When you create a new project it asks you to input the Device Family but the dropdown menu only has two options - ...
1
vote
3answers
167 views
Perl program structure for parsing
I've got question about program architecture.
Say you've got 100 different log files with different formats and you need to parse and put that info into an SQL database.
My view of it is like:
use ...
1
vote
3answers
2k views
Convert simple iPhone app to Universal app
I have very simple iPhone app, which uses just UIButtons, UIlabels, UITableView. without any custom controllers and graphics. How can I convert app to universal with that UI?
1
vote
2answers
234 views
How to make the font scale
I am making an universal application for iPhone and iPad. I know there is a option to define that the text should scale downwards to a chosen point-size when it is to large however I need the text to ...
1
vote
2answers
240 views
filename~ipad.xib naming convention
The issue I am having with this naming convention ~iPad.xib is that everything loads properly in the iPad simulator. Although when I build the project on the device only the iPhone Views load. This ...
1
vote
0answers
314 views
creating universal ios app with iOS4.3 and xcode 4.0
I need to create a Universal iPhone/iPad application using Xcode 4.0.
I start creating universal application, there is common app delegate and separate subclass of this app delegate one for iPhone ...
1
vote
1answer
238 views
Position UILabel when app is opened in iPad
I have a universal iPhone/iPad app. On the main menu I have a UIImage and UILabel that show the current weather conditions outside; the UILabel shows the current temperature.
I am using the same XIB ...
1
vote
3answers
209 views
Is there a universal date format for PHP?
Okay so is there a way to set a date that can be easily modified to a different format later on. Example: A date is in a mysql database, and it is in a universal format; it gets put into a document, ...
1
vote
4answers
388 views
Universal app crashes on iPad simulator at each alternate time
My app crashes on iPad simulator in alternate builds, crash then run then crash, etc.
objc[1116]: Class Protocol is implemented in both ...
1
vote
3answers
157 views
Submitting iPhone app with 2x on Ipad
How should i submit my iPhone app so that it is also available for downloads on iPad but with 2x thing on it.
I need some configuration settings...
Architectures: Standard/Optimized?
Valid ...
1
vote
1answer
386 views
iOS universal app test on older iOS device
I have an iOS 4.2 universal app. I've tested the app against all available simulators (iPhone 4.0, 4.2 and 4.2; iPad 3.2 and 4.2). Everything runs great on these simulators and on real devices with ...