|
Hi All,
I have iPhone Developer Program.
And My iPod touch has iPhone OS 2.2.1.
I wanna update my touch to 3.0.
But I cannot find the link for getting iPhone OS 3.0
Please let me know how to get iPhone OS 3.0 and 3.1
Thanks.
Started by cnook on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In addition to what yogsototh said, you can also launch .
The possibility to upgrade your OS.
|
|
Is there any way to recover a deleted photo/video on iPhone OS 3.1 I just confirmed the delete of a video and i would like to know if there is any possibitie to recover it. If possible without having a jailbreaked iPhone.
Started by quentin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Your iPhone backups are located in
in Mac
~Library/Application Support
There is no way to do a file recovery....
Important information on your iPhone, whether from 3rd party applications, your photos, contacts copy it back to your iPhone.
|
|
Hi there,
I have added the iPhone's Tock sound to my own custom keyboard like this:
NSString *path = [[NSBundle bundleWithIdentifier:@"com.apple.UIKit"] pathForResource:@"Tock" ofType:@"aiff"]; SystemSoundID soundID; AudioServicesCreateSystemSoundID((...
Started by MrMage on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
And....
This is probably stupid, but I've seen in other sample code that there is also a tick sound file .
Use AVAudioPlayer instead of AudioServices and you will have access to a volume property that allows you to lower and raise the volume of the sound .
|
Ask your Facebook Friends
|
The app crashes on the tester's device (with OS 3.1) but does well on the simulator and my device with OS 3.0.
I have the crash log but I am finding it difficult to understand the reason of this crash as I cannot see the mentioned crashed thread (usually...
Started by Imran Raheem on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It, here's the link:
http://developer.apple.com/iphone/library/technotes/tn2008/tn2151.html#ACQUIRING_CRASH.
|
|
I downloaded iPhone SDK 3.1 with Xcode 3.2 for Snow Leopard from Apple, but when I go to install it, it says it's installing iPhone SDK 3.0.
How can I find iPhone SDK 3.1? I can't get any apps on my phone until I upgrade my SDK because my iPhone is on...
Started by Elisabeth on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In the install package it lists the 3.1SDK only as "iphone....
You need to download the 3.1 sdk from the iphone apple developer connection
The xcode 3.2 download DOES NOT include the iphone 3.1 sdk
Ah, I figured it out.
|
|
Hi,
I am trying to pick a video from the photo library. In principle I know how to do it you set the mediaType of the image picker to an NSArray with kUTTypeMovie as its only object. But this doesn't seem to work on an iPhone 3G. Since OS 3.1 you can ...
Started by Ben on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
AvailableMediaTypesForSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
and on my 3GS running OS 3.1.2.
|
|
Hi folks!
I need help to understand the crash log i received from the client. The app works fine on my phone but it crashes with him. I have OS 3.0 installed here while my client has upgraded to OS 3.1.
Client reported app crashes usually when he starts...
Started by Imran Raheem on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Launchd [1] Date/Time: 2009-10-05 16:12:07.844 -0700 OS Version: iPhone OS 3.1 (7C144) Report Version: 104Here's a crazy thought: install 3.1 on your iPhone so you can test your app and keep your client happy....
|
|
Since I've updated my 3G iPhone to 3.1, it will become unresponsive after ~4-5 hours. It looks like it's off, but it's not. None of the buttons do anything that I can see. The only way I can get a screen back is to do a hard reset (Power + Home). Has ...
Started by churnd on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at superuser):
Nothing new installed or even songs/movies installed, just updated to OS 3.1. logo reappeared....
Still didn't try to restore a previous backup, but this thing is crazy this same issue as well .
iPhone 3G (not S), OS 3.1 ...
|
|
I have iphone with os ver. 2.0 i read that for app store all appplication must be run 3.0 os.so how could i make my application to run in both firmware.is there a way i can detect if os ver.>3.0 then run different statments alse run statments for lower...
Started by Rahul Vyas on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
When you use #if....
I see plenty of apps in the App Store that say they work with iPhone OS 2.x or later and they run fine on my iPhone 3G running 3.1.
Your code above will not run on both sets of OSes.
Support for that SDK.
|
|
How can you determine and compare (>, <, etc.) the current OS version of the iPhone that the app is running on? There is a certain bug in 3.0 but not in 3.1+ so I'd like to be able to skip out a bit of code if the current OS version is not >=...
Started by Michael Waterfall on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To get the OS version, use [UIDevice....
You can for instance do something likeDo you mean determine the version of the OS? The SDK is fixed at build time, but the OS may change.
You can use __IPHONE_OS_VERSION_MIN_REQUIRED.
|