Questions tagged [ios3.0]

For issues relating to using iOS, version 3.0.

iOS is an operating system for mobile devices developed by Apple Inc that they currently use in their iPhone, iPod touch and iPad devices. It is optimized for portable (including handheld) hardware with touch interfaces.

See for further information.

38 questions
9
votes
3 answers

Problem UIScrollView pagingenabled in IOS 3.1.3

I have set paging property of scroll view to 'scrollview.pagingEnabled = YES'. When tested it seems to be working in IOS 4 and above but it is not working on iOS 3.1.3. Can any one help me with this?
PgmFreek
  • 6,374
  • 3
  • 36
  • 47
6
votes
1 answer

Latest Reachability.m (Example code version 2.2) compatible with iOS 3.0?

Does anyone know if version 2.2 (the latest) of Apple's iOS 'Reachability' example code will run on iOS 3.0? I want to support iOS 3.0, and Reachability.h and .m is the first non framework code I'm using in my app. In my own code I usually read the…
MattyG
  • 8,449
  • 6
  • 44
  • 48
6
votes
1 answer

SDK and iOS Deployment Target.

I build my project with the latest SDK (4.1) and set "iOS Deployment Target" (3.0). Can I run my project on a real iPhone 3.0 if I use some methods of 4.0 sdk?
Voloda2
  • 12,359
  • 18
  • 80
  • 130
5
votes
2 answers

What is the alternative of [NSBundle mainBundle] URLForResource:withExtension: in iOS 3 SDK

I am developing an iOS app using iOS 4.2 SDK, but I want the app to run on older devices like my iPhone 2G with iOS 3.1.3. I don't know what is the alternative for this code: NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"CoreDataApp"…
dchakarov
  • 9,048
  • 3
  • 25
  • 20
3
votes
1 answer

iPhone App Update: Ignore backwards compatibility for iOS 3.X (iOS Deployment Target set to 4.0)

Possible Duplicate: Supporting older iOS Versions I plan to drop support for iOS3.X in my next app update (change iOS Deployment Target from 3.0 to 4.0) I was still targeting iOS 3.0, but can't test anymore my XCode project with older SDK (I…
Samuel
  • 5,439
  • 6
  • 31
  • 43
3
votes
1 answer

MPMoviePlayerController - Controls are not aligned

My iPhone app (created under iOS2), has a strange behavior. The left arrow is not aligned with other controls (on both iOS3 and 4) My other apps work fine... Does someone have any idea ? Update : That bug appear with all iPhone in my company, and…
Francescu
  • 16,974
  • 6
  • 49
  • 60
2
votes
4 answers

Make iPhone app compatible with iOS 3

I have developing an iPhone application using xcode 4 which is compatible with iOS 4.3 and runs on iPhone 4 device smoothly. My question is how to check whether my application is compatible with iOS 3 or not.I do not have any iOS 3 device to run the…
Manish Agrawal
  • 10,958
  • 6
  • 44
  • 76
2
votes
1 answer

How do you set an app so that only iOS4 users can download it?

I have an app that is released in the app store and can be used by 3.x and 4.x. We compiled it using base SDK Latest 4.2, and deployment target 3.0. But now we've added changes that are 4.0 required (i.e. this app WON'T work if you are using…
Chris
  • 21
  • 2
2
votes
3 answers

[NSPathStore2 finishedPlaying]: unrecognized selector sent to instance

Intermittently while running my program it crashes out with: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSPathStore2 finishedPlaying]: unrecognized selector sent to instance 0x286e20' According to the…
ingot86
  • 21
  • 3
2
votes
0 answers

What's the best choice for streaming audio only to iPhone iOS 3.1.3 using Apple's Http Live Streaming Protocol?

I'm building an app that deals with streaming music from a server that's using Http Live Streaming Protocol to send the information. I'm using AVPlayer (with AVPlayerItem) to decode the m3u8 files that the server is sending but this class is only…
2
votes
1 answer

NSCache like class for iOS 3.0

I'm currently writing a application that would benefit extremely from caching, I'd like to use the NSCache class which delivers exactly what I want (in-memory caching with cost, key-value pairs, and automatic cleaning). However, NSCache is only…
JustSid
  • 25,168
  • 7
  • 79
  • 97
2
votes
1 answer

IOS3 Compatible App in IOS4 Mutlitasking

This is a follow on from IPhone App Submission Issues If I have a IOS3 compatible app, how does it handle in IOS4 in regards to Multitasking? i.e. When the IOS3 app is closed on an IOS4 phone and than they reopen it, will it restart or is it…
Matt
  • 3,305
  • 11
  • 54
  • 98
2
votes
1 answer

iPad Rotation and Keyboard pop up

I'm building an app that uses a UIView that contains a UIScrollView within it so that when the keyboard shows up, users can still scroll downwards to see the content within the view. It seems like I have gotten everything perfectly set up but when I…
Tereno
  • 923
  • 1
  • 13
  • 20
2
votes
1 answer

iOS 4.0 and 3.0 on one mac

I have just submit my app to the App store, and received many comments that the application crashes on startup on older iphones. The deployment target was set to 3.1.3 and base sdk to 4.0. I thought I didn't use any api from 4.0 so the only problem…
Dokotor
  • 21
  • 2
1
vote
1 answer

How to test iOS applications for iOS v 3.1 compatibility with Xcode 4.2?

I have Xcode Version 4.2 ,Build 4D199. I need to test an application for iOS 3.1 compatibility. How to load iOS 3.1 simulator? I also have iPhone 2 with os 3.1.3 (7E18). I set the deployment target has 3.1 and added armv6 in architecture section of…
8suhas
  • 1,460
  • 11
  • 20
1
2 3