|
I'm developing an App for my iPod Touch that doesn't use the iPhone-Special-Hardware like phone or cam. I want to test it on my iPod touch. I am already a registered developer (free account, no fee). What are the steps to get my app working on my iPod...
Started by Thanks on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can also do this for free if you jail break you iPod ....
This will let you install your application on the iPhone or the iPod.
You need to pay the $99 developer fee, and become an iPhone developer.
Or iPod Touch).
|
|
Is there a way to determine the device running an application. I want to distinguish between iPhone and iPod Touch if possible.
Started by Rob on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
UIDevice currentDevice].model; if([deviceType isEqualToString:@"iPhone"]) // it's an iPhone
feel free"]) return @"iPhone 1G"; if ([platform isEqualToString:@"iPhone1,2"]) return @"iPhone 3G"; if ([platform isEqualToString....
|
|
Essentially I'd like to know just host compatible are the iPhone and the iPod Touch. I would like to know if I could buy an iPod Touch (and thus save some cash) and develop iPhone apps on it or if I really should spend the extra money and put up with ...
Started by Miky D on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
The iphone has a few more hardware features over the ipod apps or games....
The "iPod Touch" is just like the iphone software wise except for the hardware specific apps.
To the same internal tech specs as the new iphone.
|
Ask your Facebook Friends
|
Can I run an iPhone application on an iPod touch ?
Started by Jaleel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Most iPhone apps are compatible with the iPod Touch..
The iPod touch doesn't have a cell radio.
|
|
Are there any iPhone/iPod Touch applications that will stream from a DAAP, DNLA, or UPnP AV server?
Started by Scott Markwell on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
DLNA and UPnP for iPhone/iPod:
http://sourceforge.net/projects/mmc-client/
Yes, you could have.
|
|
Is there separate emulator for iPhone and iPod...?
in my computer i already installed iPhone emulator, can i install ipod emulator too with out losing iPhone simulator ?
Started by Jaleel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
-t
should....
If you mean the iPod touch , then the simulator is the same as the iPhone simulator.
The iPhone is a superset of an iPod, so the iPhone simulator in the iPhone SDK.
There is only one simulator for both.
|
|
Is there a manual way to load an iPhone App onto the iPod touch?
Started by Moshe on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Open it up, click....
No, it won't brick your device, and it literally and download blackra1n .
Yes, this does require a jailbreak.
The code has to be signed in order for it to run on an actual iPhone or iPod touch.
Not unless you jailbreak it.
|
|
Hi,
Does NSLog executes in iPod/iPhone ? i have googled it .. could'nt find anything..
Started by g.revolution on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The Xcode organizer has a tab which shows the devices console log. .
You can get access to the output, in the console log of your iPhone.
As far as I know NSLog does execute on the iPhone.
|
|
I have seen people take screen shots on their iPhone/iPod Touch. How do you do that?
Started by Mike Wills on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
: ;-)
Okay, some additional information for people who like to read: This works with the iPhone firmware.
|
|
I need to render the page differently if it's acessed by an iphone/ipod touch. I suppose the information is in the request object, but what would be the syntax?
Started by Steph Thirion on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Note that iPod Touch has a slightly different signature than Agent String article on the apple website indicate the different user agents for iPhone and iPod touch
This is the syntax I....
For 'iPhone' in the HTTP_USER_AGENT.
|