Questions tagged [iphone-sdk-3.1.3]

Refers to the iPhone software development kit, version 3.1.3

22 questions
12
votes
3 answers

iPhone 3.1.3 sdk for Leopard

Is it still possible to find the 3.1.3 SDK (w/ Xcode) for iPhone development on Leopard? I haven't upgraded to Snow Leopard yet, but I need to interact with devices running 3.1.3. I should have grabbed that version when it was up, but I didn't. So,…
mousebird
  • 1,029
  • 9
  • 18
8
votes
2 answers

iOS 4 Build SDK

I installed the iOS 4 SDK yesterday. I previously had the 3.1.2, 3.1.3 and 3.2 SDKs installed. Since installing the iOS 4 SDK, I only have 3.2 and 4.0 available in Xcode. When I load an Xcode project that was targeting an older version (say 3.1.2),…
John
  • 5,452
  • 8
  • 37
  • 37
4
votes
4 answers

Testing in iOS 3.1.3 with the latest Xcode

How do you test an app in iOS 3.1.3 with the latest Xcode build? Is it possible to do this in the Simulator? If not, is it possible to downgrade a device to iOS 3.1.3?
hpique
  • 119,096
  • 131
  • 338
  • 476
4
votes
2 answers

App crashes after AppStore upgrade

I have just release a new version of my app to Apple which Apple approved. The version works great... for new users. But for "old" users the app crashes. They have to uninstall the app and then re-install it. I have some users still running 3.1.3…
Paul Peelen
  • 10,073
  • 15
  • 85
  • 168
4
votes
4 answers

How many iPhone users still use iOS3.1.3 and below?

My PM wants me to include support for older iOS versions before going to appstore I'm trying to figure out how to build for older versions below 3.2 but I'm un able to do so because MPMoviePlayerViewController isn't compatible? Should I just remove…
David van Dugteren
  • 3,879
  • 9
  • 33
  • 48
3
votes
1 answer

iPhone SDK - How to take a picture with custom camera view?

I want to release the shutter as soon as the user tabs on the screen. I have working code for displaying the camera in fullscreen mode. How can I trigger the shutter by a touch? - (IBAction) takePicture { if (!self.imgPicker) { …
dan
  • 507
  • 2
  • 9
  • 14
3
votes
1 answer

Using GraphicsServices.h/GSEvent as well as compiling CLI iPhone tools with Xcode

I sent this to KennyTM (has all the private framework headers on GitHub) but I figured I'd ask here too just in case someone has some good ideas or any way to help me out. I'm trying to write a command line utility that sends GSEvents to operate the…
Peter Hajas
  • 4,011
  • 4
  • 25
  • 28
3
votes
1 answer

NSLog crashing app using 3.1.3 software

the other day I had a bug submitted for my app from a user on an ipod touch with 3.1.3 software. It was a strange bug as no-one else has submitted it yet. Long story short, it appears that anywhere where I have NSLog() in code it will actually…
Matt Facer
  • 3,103
  • 11
  • 49
  • 91
2
votes
2 answers

Transferring data from iPhone to Mac via Bluetooth

Is there any way built into the iPhone SDK that allows devices to send data to a Mac over bluetooth? I know of GameKit, which allows data sharing between iPhones, but I haven't seen anything about an iPhone --> computer connection. Thanks
indragie
  • 18,002
  • 16
  • 95
  • 164
1
vote
2 answers

minimum effective schedule interval ( iphone objective c )

I think there is a minimum time span that we can assign as interval to schedule a task in iPhone SDK. But I haven't found that minimum interval/time span yet. Would you let me know please! It will be very helpful to me. EDIT Any detail reference is…
Sadat
  • 3,493
  • 2
  • 30
  • 45
1
vote
1 answer

Adding an observer to an NSString

In my application delegate I have an NSString which can be modified by a class. What I want to do is to have another class observe this NSString and to react whenever this NSString is changed. Does anybody know how I can do this?
1
vote
1 answer

How to make my iphone application compatible with iphone 4.0 OS

Can any one help me out. I want to make my iphone application developed in 3.1.3 SDK compatible with iphone OS 4.0 It is a simple application of getting data from a remote web services and showing the data in a UItableView
Ganesh
  • 1,059
  • 1
  • 10
  • 28
1
vote
0 answers

3.1.3 and 3.2 different behaviour

I'm using a custom cell in tableView with a UITextField - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView…
teo
  • 269
  • 1
  • 5
  • 11
1
vote
1 answer

Background image for list view still shows white behind text for cells

I wanted to put a background image partially visible behind a list view. I created a list view in my nib with an image view behind it and made the list view background 20% opacity. This allows the background image to show thru but my text in the…
MonkeyTroy
  • 46
  • 3
0
votes
1 answer

xCode 4.2, iPhone 3.1.3, UITapGestureRecognizer, setNumberOfTapsRequired, unrecognized selector

I'm trying to run xCode 4.2 using an iPhone 3.1.3. My quick question is: Is there a workaround to make this function work? UITapGestureRecognizer *gestureSingleTap = [[UITapGestureRecognizer alloc] initWithTarget:self…
BoxCat
  • 77
  • 10
1
2