ipodtouch

software sale site.

i wish to set up an online site that sells 'expansion packs' for an iphone app im having made. when an expansion pack is purchased on my site, i need a random 'authorization' code generated that is unique to that transaction. this random code enables that user to download the through the iphone app when they input the code into the app. ...

ipod touch / iphone development on Windows?

Possible Duplicate: iPhone development on Windows Is there any way to develop for the iPod touch or iPhone on a Windows system? Months later: does anyone else think it's funny that this question has 4,500 views but only 2 upvotes? :D I vote to close as duplicate of http://stackoverflow.com/questions/113547/iphone-develop...

Reading pdf files on an ipod touch

I know Safari will display them, but I want the text to wrap, I don't want to horizontally scroll or zoom in. Is there an application to convert PDF files for viewing on small screens? ...

Piggyback off blackberry's internet connection via bluetooth to an iPod Touch

I've got a blackberry and an ipod touch. I can connect to the net at anytime with the BB using the cellular network. However, the touch requires a wi-fi connection. I know its possible to share the BB's data connection with a pc. I'm curious if (1) it could be done with an ipod touch abd (2) do it all wirelessly via bluetooth. ...

Ipod Touch 3G vs Iphone for app development.

Is the new Ipod Touch 3G support all the apps designed for iPhone? and how does the 32GB version of iPod Touch stack up against the iPhone 3GS hardware-wise (as in CPU/memory) ? Can i develop apps seamlessly on the iPod Touch? ...

How can you have a page with a button that change views that is not a table view? (iPhone Developing)

I asked a similar question and someone gave me a tutorial link. But, the link made me use a table view and it looks bad with all the lines and stuff. So how do I just make a view with a button and background and stuff (Please write steps in 1.2.3.. format and it would be nice if you attached the code needed too.)??? ...

Adding iPod Support to (previously) iPhone Only App

When I started on my current project, there was already an App in the App Store. This App was iPhone only. My first task was to test and build a version that also ran on an iPod Touch. About 3 weeks ago Apple removed the option on iTunes connect to set the device requirements. And sent an email out to all developers: "The App Store...

Proper method to detect device model (iPhone/iPod Touch)?

Is this the proper way to detect which device a user is running? NSString *currentModel = [[UIDevice currentDevice] model]; if ([currentModel isEqualToString:@"iPhone"]) { // The user is running on iPhone so allow Call, Camera, etc. } else { // The user is running on a different device (iPod / iPad / iPhone Simulator) disallow C...

iPhone write to file (alternative directory)

New to iPhone 3.2, Apple introduced File-Sharing support. Details can be found at https://developer.apple.com/iphone/library/releasenotes/General/WhatsNewIniPhoneOS/Articles/iPhoneOS3_2.html#//apple_ref/doc/uid/TP40009337-SW1 . Now, most examples floating around in the web demonstrates writing to the documents directory. What if I wan...

How do I remove 3 characters from the end of an NSURL?

Hey, my first question! I've been able to code up most of this RSS reader without enlisting help (through a lot of searches through stackoverflow!) but I'm stumped here. NSString *urlbase = [[NSString alloc] initWithFormat:[links3 objectAtIndex:indexPath.row]]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlbase]];...

iPhone - Working with Orientation and Multiple Views

I searched long and hard in an effort to figure this out. It took about 4-5 hours before I finally managed to reach a solution. I will be answering my own question in an effort to provide support to anyone who comes to the same problem. So, I created the application Critical Mass Typer. It is a typing game that utilizes the keyboard as ...

iphone os 4 app is not working on ipod touch os 3+

after i complied my app on IOS4 my app stopped working on ipod touches. it is a first generation ipod touch, with os 3 on it. So i assume application for OS4 are not working on old ipodtouches ? but there was no warring from the app store and it is even listed for download for ipod touch too. any ideas ? base SDK is iphone device 4 an...

iPhone Debugging: Get a black screen when debugging a universal app

I am working on my universal app (4.0.1 sdk) and I am unable to get it to run on an iPod touch. It works on iPad, and on both the iPad Simulator and the iPod simulator When I try to launch the app on the touch, my main gets called and I can stop at a break point (I assume this means the provisioning and certs are right) but nothing after...

How to change background color in iPhone app

I tried this code in the view controller, but it didn't work. Why is that? - (void)viewDidLoad { [self setBackgroundColor:[UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0]]; [super viewDidLoad]; } ...

Orientation Problem in iPodtouch not in iPhone/iPad

hi! i have implemented application in iOS 4.0 and Provide LandScape Orientation it works fine with iPhone and iPad but gives problem in iPodtouch. i am making Universal build.Please give me some guidelines.Thanks in Advance. ...

is there a way to control the iPod Touch’s keyboard orientation using JavaScript?

Hi, I was wondering if there is a way to control the orientation of the iPod Touch’s keyboard from JavaScript? When the using is in landscape, the keyboard is always displayed in portrait mode which is causing problems with my static positioning of many elements. Is it possible to control the keyboard’s orientation in Javascript? Than...