Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
5k views

iOS: Device orientation on load

It seems that when my app loads, it does not know its current orientation: UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation]; if (orientation == UIDeviceOrientationPortrait) ...
11
votes
3answers
5k views

API to determine whether running on iPhone or iPad

Is there an API for checking at runtime whether you are running on an iPhone or an iPad? One way I can think of would be to use: [[UIDevice currentDevice] model]; And detect the existence of the ...
6
votes
2answers
463 views

Know if iOS device has cellular data capabilities

I have a toggle in my app that's "download on WiFi only". However, that toggle is useless for iPod touch or WiFi-iPads. Is there a way to know if the device has cellular data capabilities in code? ...
4
votes
3answers
918 views

how to deal with UIDeviceOrientationFaceUp and UIDeviceOrientationFaceDown?

a noob question here. i detect the orientation with: UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation]; all is fine and dandy and I reposition my text fields and labels ...
4
votes
9answers
5k views

How do I detect orientation on app launch for splash screen animation on iPad!

Hi I have an app and I have two *.pngs for default splash screen: Default-Landscape.png Default-Portrait.png What I want is to animate this default splash screen away when my app is loaded and ready ...
3
votes
1answer
751 views

UUID for app on iOS5

As I expect you are aware of, the uniqueIdentifier in UIDevice is deprecated in iOS5. What I am looking for a basically the same functionality for iOS5. What I understand from the documentation is ...
3
votes
3answers
965 views

Why isn't a registered UIDeviceOrientationDidChangeNotification always called?

I wrote a simple view controller that shows a modal popup dialog. Because it creates a new window to lay over the entire screen, I've added a UIDeviceOrientationDidChangeNotification observer that ...
3
votes
1answer
1k views

iPhone 4 incorrect screen size?

Could someone tell me why the following code would return Screen Size: 320.000000, 480.000000 on the iPhone 4? CGRect screenRect = [[UIScreen mainScreen] bounds]; NSLog(@"Screen Size: %f, %f", ...
3
votes
3answers
3k views

orientation] always null

As per the title. Calling [[UIDevice currentDevice] BeginGeneratingDeviceOrientationNotifications] has no effect. DidRotateToInterfaceOrientation etc events are working fine, but I need to be able to ...
2
votes
1answer
103 views

UIDevice properties not working in static library

I have created a static library in Iphone SDK in which i used some UIDevice properties. When i run the app, this xcode show this error UIDevice Undeclared... Even the same code is running perfectly ...
2
votes
1answer
330 views

Retrieving the serial number from the device

How do we get the serial number of the device through objective C? I want to retrieve the iPod/iPhone/iPad serial number from within my application.
2
votes
2answers
2k views

Make iPad app a Universal app

I have an iPad app that I would like to make Universal, however this seems alarmingly difficult. I've changed things around so that I support both builds, but when building, I get lots of errors about ...
1
vote
2answers
92 views

iOS: Monitoring Battery Level uses more battery? Should auto-save?

I have a GPS app that already uses a fair amount of battery. Because of the nature of the app, I don't want the user to loose all of their data if their battery dies without them knowing it. So, I ...
1
vote
1answer
175 views

Prevent the iOS proximity sensor from turning the screen black

I've seen this question asked a couple of times but nobody has answered it - in fact it might be impossible, but I was wondering if there was a way to prevent the screen from going black when the ...
1
vote
0answers
97 views

UIDeviceOrientationDidChangeNotification doesn't work while device is on table?

Hi there i have a problem, In my AppDelegate i have used method beginGeneratingDeviceOrientationNotifications to start notify me when device starts rotating. It works fine if i hand-held my ipad but ...
1
vote
3answers
204 views

How can I get the real device's orientation?

All, When i locked the screen orientation,i want use [[UIDevice currentDevice] orientation] to get screen's orientation ,but it always return UIDeviceOrientationPortrait, so, question is how can i ...
1
vote
1answer
40 views

Does the uniqueIdentifier stays the same if an user resets his apple device?

If i restore or reset an iphone/ipod/ipad, does the uniqueIdentifier stays the same or does it change? [[UIDevice currentDevice] uniqueIdentifier]
1
vote
2answers
516 views

How to know if current device can have background mode

I am doing some tasks after having entered in background mode. I want to do these tasks only if I am in background mode so I did : if ([[UIApplication sharedApplication] applicationState] == ...
1
vote
2answers
2k views

How Do I detect the orientation of the device on iOS?

I have a question on how to detect the device orientation on iOS. I don't need to receive change notifications, just the current orientation itself. This seems to be a rather simple question, but I ...
1
vote
2answers
253 views

Reading “Settings” application data inside my iPhone application

How can I read "Settings" application data inside my iPhone application? I wanted to read some of my application settings from there.
1
vote
1answer
432 views

interfaceorientation in certain views only

I have a Main View that contatins uitableview, and i am pushing another view when the user taps on a row. I want only the child views to rotate and have written code for that. But the problem is once ...
1
vote
1answer
113 views

Build iPhone App for multiple devices and versions

Im trying to upgrade my iPhone app from 3.0 to 4.0 Some of the API are deprecated in 4.0, if i use the new API, it might not work on 3.0 right? Therefore i need to have an old API and New API What ...
1
vote
1answer
551 views

Using accelerometer to detect iPad lock switch trigger?

So for complicated reasons I am managing view rotations myself, and am only implementing UIDeviceOrientationPortrait as the autorotating orientation. Anyway, when one clicks the screen lock on the ...
1
vote
1answer
1k views

iPhone development - How to get some device [usage] info/statistics

So, I know that is possible to retrieve some info, like Device name, unique ID, etc. all of them provided by UIDevice Class. I would like to know if there is a way to get information related with ...
1
vote
3answers
2k views

Any way to silence the UIDevice setOrientation warning?

Anyone have a simple way to silence the undocumented UIDevice setOrientation warning? I found this piece of code that silences the undocumented UIPickerView setSoundsEnabled warning.
0
votes
1answer
20 views

iPhone battery capacity values in mAH

I would like to know how to have the data capacity in Mha for iPhone/iPad battery. I would put them in an application that I intend to put on appstore and then I can not use IOKit. Does anyone know ...
0
votes
1answer
22 views

What information does an iphone app have about the handset?

Our app has a 'contact us' section, from which the user can dial our call centre. At the moment it goes through to our switchboard. We'd like to provide them with a few buttons which would route the ...
0
votes
3answers
114 views

get list of installed applications on iphone objective-c

I have an application that needs to get the list of installed (other, maybe third party) applications on the device. How can it be done? Or can it be done at all?
0
votes
0answers
25 views

Accurately determine device orientation when keeping a non-rotation UIView

I am currently writing an iOS app that needs a fixed view and a toolbar that always faces the user. To do this I set the app orientation: - ...
0
votes
1answer
126 views

How to get correct interface orientation in appDidBecomeActive:(UIApplication *)app?

I need to get interface orientation in appDidBecomeActive:(UIApplication *)application [application statusBarOrientation]; but if the app starts from closed(ie not resumed from background), this ...
0
votes
1answer
95 views

How control volume of device by a progress or slide bar by our application?

I have an application in which i have set a notification. When notification raise then sound of that is according to device's volume level. So i want to add a progress bar or slider to control ...
0
votes
3answers
72 views

iPhone - getting device orientation in first view controller's view will appear

I've only one app delegate and view controller in my app. The app works in both portrait and landscape modes. In my view controller's viewWillAppear method I'm getting the orientation of the device ...
0
votes
0answers
473 views

How to retrieve the WiFi Mac address of a device — IOS [closed]

Possible Duplicate: How can I programmatically get the MAC address of an iphone I want to retrieve the WiFi Mac address of a device which we find in Settings --> General --> About --> Wi-Fi ...
0
votes
1answer
54 views

How to Run an iPod app on iPad

How do we run a iPod app on a iPad? Which flag do we need to enable? I want to run it like it run on a iPad simulator.
0
votes
2answers
139 views

Xcode how to NSLog a JSON

Is there any way to get NSLog to print out an entire JSON file. I am currently saying NSString *deviceInfo = [NSString stringWithFormat:@"%@ %@", [[UIDevice ...
0
votes
3answers
297 views

Problems with UIDevice properties and NSLog

I've been trying to log device parameters using [[UIDevice currentDevice] ...] and NSLog. I always get the same warning despite trying different ways to go about it. The warning I get is: Passing ...
0
votes
1answer
81 views

Localization with %@

I am trying to localize the text "System Name:" in the code below: NSString *systemName = [NSString stringWithFormat:@"System Name: %@", [[UIDevice currentDevice] systemName]; I do this by changing ...
0
votes
1answer
192 views

How to detect portrait lock (orientation lock) in an app that records video?

I have an app which records video. I only supported landscape at first, but now I'm offering portrait and other orientations. I set the transform of the video to the orientation it was filmed in as ...
0
votes
2answers
200 views

Getting some device info before the main app view is loaded up

Objective-c is pretty new to me so I may well be asking an absurdly simple question but having been looking over the web and in some books I'm a bit stumped to some degree. Quite probably due to my ...
0
votes
2answers
452 views

Detect if a iPhone/iPod Touch/iPad has a GPS chip or has aGPS

Im trying to specifically determine if the device the app is on has GPS chip or uses aGPS or nothing. If it is an iPhone or a Cellular iPad, i want it to run specific code. I was hoping to find ...
0
votes
0answers
54 views

what are app requirements in order for iTunes to sync them on iDevice

So i tried syncing Xcode builds trough iTunes but error 1xE8003FFE occurs. for a non jailbrocken iDevice i know they need to be signed by apple, otherwise you need appSync on a jailbrocken device. ...
0
votes
2answers
543 views

Warning: 'UIDevice' may not respond to '-isMultitaskingSupported'

I am working with new FBConnect for iPhone. But I have followed the steps given.. but when i build it shows me this warning "Warning: 'UIDevice' may not respond to ...
0
votes
0answers
274 views

Handling camera rotation: angle and size

After a lot of time I was able to put under control the rotation of the device for what regards the camera view. Here follows the code that handles the rotation. Yet I have been as yet unable to put ...
0
votes
1answer
387 views

Is there a way to get the carrier information for iPhone?

I know this question was asked back in 2008 (with the answer being no), but with the new Verizon iPhones is there anything in place in the API that would allow this information to be reached? I see ...
0
votes
1answer
477 views

iPad App using ActionSheet showing fromRect which doesn't show correctly until the device is rotated at least once

I have an iPad app, which has a action sheet called from a button. Im using the showFromRect for the actionSheet so it looks like a popOver. When the app first starts up the actionSheet never shows ...
0
votes
1answer
147 views

UIViewController - orientation changes don't get reported

In my UIViewController subclasses, I impliment - (void)didAnimateFirstHalfOfRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation, but it never gets called, although I have ...
0
votes
1answer
264 views

Sending iphone's [[UIDevice currentDevice] name] over network

I'm trying to send the device name over a network implemented with CFNetwork. My application will successfully send the NSString over the simulator, but not on an actual device. The class reference ...
0
votes
1answer
636 views

Why can't I retrieve UIDeviceOrientation correctly while playing a movie in MPMoviePlayerController?

Everything works fine while I'm not playing anything (I'm calling beginnotifications, etc, and using the orientation to rotate my view). But after I start playing with MPMoviePlayerController ...
0
votes
1answer
141 views

How to get the details of apps installed in a device in my app

is there any way i can have an access to the name of applications that are installed in the current device in my app. is there any api's to get hold of this. thanks