iPad is a tablet computer designed by Apple running the iOS operating system. iPad applications are usually written in Objective-C in the Xcode IDE, although it is also possible to use other tools to build iPad applications. This tag is related to iOS and Objective-C.

learn more… | top users | synonyms (1)

300
votes
21answers
44k views

Detect iPad Mini in HTML5

Apple's iPad Mini is a smaller clone of the iPad 2 in more ways than we'd want. In JavaScript, the window.navigator object exposes the same values for the Mini and iPad 2. My tests so far to detect ...
223
votes
2answers
66k views

Fast and Lean PDF Viewer for iPhone / iPad / iOs - tips and hints?

There has been many Questions recently about drawing PDF's. Yes, you can render PDF's very easily with a UIWebView but this cant give the performance and functionality that you would expect from a ...
194
votes
17answers
59k views

UIDevice uniqueIdentifier Deprecated - What To Do Now?

It has just come to light that the UIDevice uniqueIdentifier property is deprecated in iOS 5 and above. No alternative method or property appears to be available or forthcoming. Many of our existing ...
164
votes
53answers
45k views

XCode 4 hangs at “Attaching to (app name)”

this is driving me crazy! I just upgraded to XCode 4 and for some reason my app won't run in the simulator or iOS device. It was working perfectly in XCode 3, but all of a sudden now when I press run ...
157
votes
3answers
58k views

How do I associate file types with an iPhone application?

On the subject of associating your iPhone app with file types. In this informative question I learned that apps could be associated with custom URL protocols. That was almost one year ago and since ...
142
votes
10answers
70k views

iPhone App Icons - Exact Radius?

I'm trying to create the icon for my iPhone app, but don't know how to get the exact radius that the iPhone's icons use. I've searched and searched for a tutorial or a template but can't find one. ...
137
votes
9answers
26k views

iPad keyboard will not dismiss if modal view controller presentation style is UIModalPresentationFormSheet

Note: see accepted answer (not top voted one) for solution as of iOS 4.3. This question is about a behavior discovered in the iPad keyboard, where it refuses to be dismissed if shown in a modal ...
116
votes
9answers
81k views

How do I do base64 encoding on iphone-sdk?

I'd like to do base64 encoding and decoding, but I could not find any support from the iPhone SDK. How can I do base64 encoding and decoding with or without a library?
114
votes
5answers
33k views

UITableView backgroundColor always gray on iPad

When I set the backgroundColor for my UITableView it works fine on iPhone (device and simulator) but NOT on the iPad simulator. Instead I get a light gray background for any color I set including ...
101
votes
13answers
103k views

Proper way to exit iPhone application?

I am programming an iPhone app, and I need to force it to exit due to certain user actions. After cleaning up memory the app allocated, what's the appropriate method to call to terminate the ...
100
votes
12answers
80k views

Best book / resources for learning iOS programming? [closed]

Which resources did you find useful for learning iOS programming? Books? Website? Videos?
84
votes
10answers
102k views

What is the iPad user agent?

From what I gather, the iPad is using iPhone OS, but with a different screen resolution from the iPhone and iPod touch. So many sites may have to change their user agent detection to adapt to the ...
79
votes
11answers
19k views

Where do I set my company name?

When creating new source files xcode adds comments with your name and company name. Where do I set my company name for xcode (not the project).
79
votes
4answers
41k views

Detect iPad users using jQuery?

Is there a way to detect if the current user is using an iPad using jQuery/JavaScript? Thanks everyone!
74
votes
8answers
13k views

What major ASIHTTPRequest features is AFNetworking missing?

With work having recently stopped on ASIHTTPRequest, it seems like attention is shifting to AFNetworking. However, I've not yet found a good comparison of the features of the two libraries, so I ...
70
votes
3answers
39k views

iPhone OS Memory Warnings. What Do The Different Levels Mean?

Regarding the black art of managing memory on iPhone OS devices: what do the different levels of memory warning mean. Level 1? Level 2? Does the dial go to 11? Context: After an extensive memory ...
70
votes
6answers
61k views

What size should apple-touch-icon.png be for iPad and iPhone 4?

Are Apple touch icons bigger than 60x60 supported, and if so, what dimensions should I use for the iPad and iPhone 4?
69
votes
6answers
49k views

How can I make a jQuery UI 'draggable()' div draggable for touchscreen?

I have a jQuery UI draggable() that works in Firefox and Chrome. The user interface concept is basically click to create a "post-it" type item. Basically, I click or tap on div#everything (100% high ...
68
votes
7answers
9k views

To ARC or not to ARC? What are the pros and cons?

I've yet to use ARC, since the majority of the code in the project I'm working on at the moment was written pre-iOS 5.0. I was just wondering, does the convenience of not retaining/releasing ...
68
votes
5answers
28k views

Animate change of view controllers without using navigation controller stack, subviews or modal controllers?

NavigationControllers have ViewController stacks to manage, and limited animation transitions. Adding a view controller as a sub-view to an existing view controller requires passing events to the ...
67
votes
8answers
40k views

How do I specify both icons for a universal iPhone/iPad app?

I hope to create a single app that supports both the iPhone and the iPad. The app works in the simulator for both devices as desired. Now I'm trying to build and deploy it. I set the "Icon File" in ...
65
votes
10answers
12k views

warning: iPad: Icon-72.png: icon dimensions (0 x 0)

I got this problem: "warning: iPad: Icon-72.png: icon dimensions (0 x 0) don't meet the size requirements. The icon file must be 72x72 pixels, in .png format (-19014)" when build for archive the iPad ...
61
votes
7answers
12k views

XCode4 + iOS 4.3: “No Packager exists for the type of archive”

I just upgraded to XCode 4 and am trying to create an adhoc build of an earlier project. Whenever I use the "Archive" option I either end up with no archive at all in the Organizer window OR there is ...
59
votes
4answers
10k views

Xcode 4.5 Storyboard 'Exit'

I have just installed Xcode 4.5 for iOS6 support, and I have seen a new icon called 'Exit' in my Storyboard, listed under my view controllers along with 'First Responder' etc. A little green icon ...
58
votes
4answers
70k views

splash screen for Universal application for ipad and iphone

I am developing a universal application using iphone sdk3.2. I want to know whether I need different default.png images of different sizes for iPad and iPhone
56
votes
12answers
21k views

Popover with embedded navigation controller doesn't respect size on back nav

I have a UIPopoverController hosting a UINavigationController, which contains a small hierarchy of view controllers. I followed the docs and for each view controller, I set the view's popover-context ...
54
votes
5answers
10k views

Convert Storyboard from iPhone to iPad

I have a iPhone application which has a storyboard. Now i want to provide a iPad application too. So I asked me whether there is a function which helps me to convert my iPhone storyboard to an iPad ...
54
votes
9answers
23k views

iPad Web App: Detect Virtual Keyboard Using JavaScript in Safari?

I'm writing a web app for the iPad (not a regular App Store app - it's written using HTML, CSS and JavaScript). Since the keyboard fills up a huge part of the screen, it would make sense to change the ...
53
votes
13answers
30k views

Converting iPhone xib to iPad xib?

How do you do it? I saw one video tutorial on it, but the screen was too small. Also, other than changing the view size, are there any other major changes I would have to make to my iphone apps to ...
53
votes
6answers
31k views

iphone/ipad: How exactly use NSAttributedString?

Yes, many people are saying about Rich Text in iphone ipad and many knows about NSAttributedString. But how to use NSAttributedString please??? I searched for much time, no extract clues for this. ...
53
votes
2answers
31k views

How do you use NSAttributedString?

Multiple colours in an NSString or NSMutableStrings are not possible. So I've heard a little about the NSAttributedString which was introduced with the iPad SDK 3.2 (or around 3.2) and is available on ...
53
votes
5answers
20k views

Bold & Non-Bold Text In A Single UILabel?

How would it be possible to include both bold and non-bold text in a uiLabel? I'd rather not use a UIWebView.. I've also read this may be possible using NSAttributedString but I have no idea how to ...
53
votes
2answers
4k views

Override setter with arc

@interface Article : NSObject @property (nonatomic, strong) NSString *imageURLString; @end @implementation Class @synthesize imageURLString = _imageURLString; - ...
52
votes
14answers
58k views

Autoplay audio files on an iPad with HTML5

I'm trying to get an audio file to autoplay in Safari on an iPad. If I go to the page using Safari on my Mac, it's fine. On the iPad, autoplay does not work.
52
votes
4answers
62k views

iPad Browser Simulator? [closed]

How can I use a browser in Windows to simulate the iPad browser?
51
votes
4answers
32k views

Basic Drag and Drop in iOS

I want to have a view in which there are vehicles driving around that the user can also drag and drop. What do you think is the best large-scale strategy for doing this? Is it best to get touch events ...
51
votes
8answers
41k views

How do I reset the scale/zoom of a web app on an orientation change on the iPhone?

I'm having the same problem that a couple of others have had with getting the correct behavior in a web app on an orientation change, and there doesn't seem to be an obvious solution - I've seen this ...
49
votes
11answers
33k views

Get current orientation of iPad?

In a given event handler (not the "shouldAutorotateToInterfaceOrientation" method) how do I detect the current iPad orientation? I have a text field I have to animate up (when keyboard appears) in ...
45
votes
4answers
37k views

iOS SDK - Programmatically generate a PDF file

Using the CoreGraphics framework is tedious work, in my honest opinion, when it comes to programmatically drawing a PDF file. I would like to programmatically create a PDF, using various objects from ...
43
votes
3answers
13k views

What is the difference between screenX/Y, clientX/Y and pageX/Y?

What is the difference between screenX/Y, clientX/Y and pageX/Y? Also for iPad Safari, are the calculations similar as on desktop OR there is some difference because of viewport? It would be great ...
43
votes
2answers
17k views

Get PDF hyperlinks on iOS with Quartz

I've spent all day trying to get hyperlinks metadata from PDFs in my iPad application. The CGPDF* APIs are a true nightmare, and the only piece of information I've found on the net about all this is ...
42
votes
4answers
8k views

Is there any way to make the iPad simulator bigger?

It kind of annoys me how small the iPad simulator is... Some apps I have in mind I have difficulty testing because of the small size of the iPad simulator. Is there anyway to make it larger than it ...
41
votes
1answer
4k views

Targeted for iPad option in Xcode

In Xcode when creating a subclass of UIViewController, an checkbox named "Targeted for iPad" exists among others. What if I want to create an app that runs on iPhone and iPad (I think it is called ...
40
votes
1answer
6k views

How can I fix “Freeform Size simulated metrics are not available prior to Xcode 4.2” warnings?

Since a couple of weeks, I've been using XCode 4.2 with projects created with previous XCode 3.x versions. When creating some custom iPad views, I often use the "freeform" attribute of Interface ...
40
votes
3answers
23k views

How to build a framework or library for other developers, the secure way?

We have an idea for an framework or library that will be very helpful for any iOS developer. So we're seriously thinking about switching from app development to framework/library development. But ...
40
votes
8answers
21k views

How can I redirect HTTP requests made from an iPad?

Since on an iPad we cannot edit the hosts file (without jailbreaking), how can we arbitrarily redirect web traffic to another url? This would be important for something such as developing a website ...
39
votes
10answers
79k views

CSS “position: fixed;” into iPad/iPhone?

I have been strugling with fixed positioning in iPad for a while. I know iScroll and it does not always seem to work (even their demo). I also know that Sencha has a fix for that, but couldn't ctrl+f ...
39
votes
3answers
6k views

“Gift App” from inside the app

I noticed that on the latest angry birds update they added a feature to gift your app from inside the app. Up till now I knew you can gift paid apps from the iTunes itself. Does anybody know what ...
38
votes
11answers
29k views

iPad layout scales up when rotating from portrait to landcape

I have a added to the "viewport" meta tag "width=device-width,initial-scale=1.0" and on an iPad the page loads up fine in landscape mode, the it switches nicely to portrait and when I rotate it back ...
38
votes
2answers
2k views

Raising minimum IOS Deployment Target Version for App Update

Let's say we have an application with a deployment target set to 3.0 and we want to raise the deployment target to 3.2. Normally, the App Store won't let the App be installed on devices with an IOS ...

1 2 3 4 5 524