vote up 1 vote down star

In my XCode project under ressources there is a Info.plist file. It has an attribute like this:

LSRequiresIPhoneOS

so my question is: Do I have to check that? What I want is that my app finds out itself wheater there is a camera or not. If not, the feature is disabled, and if yes: Cool! It must work on both iPhone and iPod touch!

I guess that if I disable this in Info.plist, I can still use iPhone features, and Apple will not refuse my code because of that, right?

flag

58% accept rate

1 Answer

vote up 1 vote down check

You should leave LSRequiresIPhoneOS checked (which is the default value). This does not prevent the app from running on the iPod Touch. It may seem confusing, but in this case "IPhoneOS" is referring to the OS that runs on both the iPhone and the iPod Touch (assuming the user has installed iPhone OS on the Touch so that it can run 3rd-party apps).

Regarding camera usage, you can use something like the following to specifically see if the camera is available:

BOOL isCameraAvailable = [UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera];

This kind of approach--checking for specific functionality--is usually better than using the iPhone OS version or hardware model.

link|flag
thanks! that approach seems reasonable to me, i know it from javascript. very good answer. thanks again! – Thanks Apr 3 at 13:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.