Questions tagged [iphone-sdk-3.1.2]

Refers to the iPhone software development kit, version 3.1.2

9 questions
8
votes
2 answers

Iphone How to know if Bluetooth headset connected

using iphone sdk 3.1.2. Is there anyway of knowing if a Bluetooth headset is connected to the device? Don't need any info except if its connected or not. This is different from knowing if one was plugged in or not which one can do via a Property…
tech74
  • 1,355
  • 3
  • 21
  • 35
1
vote
2 answers

iPhone accelerometer:didAccelerate: seems to not get called while I am running a loop

An accelerometer related question. (Sorry the formatting may not look right, its the first time I am using this site). I got the accelerometer working as expected using the standard code UIAccelerometer *accel = [UIAccelerometer…
AJJ
  • 11
  • 3
1
vote
1 answer

Movie Player shows Default.png image in background while loading (OS 3.1.2)

I'm using MPMoviePlayerController to stream audio/video files from a servrer. It works great on all other OS versions. However, on 3.1.2, it shows the Default.png image (used to display at app splash screen) in the background while the movie loads.…
0
votes
3 answers

Display login screen before Tab bar controller

Possible Duplicate: show a login screen before Tab bar controller? i am designing an iphone application which should be display login screen initially, after that it should display tab bar controller with 5 tabs. Am able to launch login screen…
0
votes
1 answer

Appending a scrollview (horizontal) to a view which has a scrollview (vertical) and two labels Iphone sdk

I have developed an iphone application which has 6 cards (icons with images) in the Rootview. Clicking on a card would bring another view which the image being enlarged (fullScreen). The Card View has a Flip button which shows the back side of the…
Teddy
  • 11
  • 2
0
votes
2 answers

iPhone SDK - (void)viewDidLoad { } - Show Progress

I have a long - (void)viewDidLoad { } function that uses the internet to load a page, and whenever the application loads the URL, the screen is black. I have a UIActivityIndicator setup to show that the address is loading, but I don't know how to…
Hank Brekke
  • 2,024
  • 2
  • 24
  • 33
0
votes
1 answer

dylib for iPhone 3.1.2 is too short, wrong cputype/cpusubtype

I've been trying to compile a dylib to use in a little prototyping experiment however dlopen() says that my dylib is Mach-O but that the file is too short. Should it be padded with something? I have the latest everything so that shouldn't be a…
Artem
  • 261
  • 2
  • 7
0
votes
2 answers

Freeze or pause iPhone camera image

On iPhone's built-in Camera application (OS 3.1), touching the shutter button shows an iris animation, then displays the image that was taken for a second or so before animating it away. Is anyone aware of a simple way to get this "brief pause"…
-2
votes
3 answers

how to show a tab bar controller after the login screen is launched?

This is a view based application. in delegate.m file I have done like this to launch login screen initially: - (void)applicationDidFinishLaunching:(UIApplication *)application { [window addSubview:viewController.view]; [window…
Karthik Varma
  • 59
  • 2
  • 11