Questions tagged [ipad]

iPad is a tablet computer designed by Apple running the iPadOS operating system. iPad applications are usually written in Objective-C or Swift in the Xcode IDE, although it is also possible to use other tools to build iPad applications. Questions that are not dependent on hardware should use the iOS tag instead.

iPad is a tablet computer designed by Apple running the operating system. iPad applications are usually written in and in the IDE, although it's possible to use other tools to build iPad applications as well.

Only use if you have problems with the hardware itself. For iPad Mini related questions use .

Models:

  1. iPad series:

    • iPad (1st generation)
    • iPad 2
    • iPad (3rd generation)
    • iPad (4th generation)
    • iPad (2017, 5th generation)
    • iPad (2018)
  2. iPad Mini series:

    • iPad Mini (1st generation)
    • iPad Mini 2
    • iPad Mini 3
    • iPad Mini 4
    • iPad Mini (2019)
  3. iPad Air series:

    • iPad Air (1st generation)
    • iPad Air 2
    • iPad Air (2019)
  4. iPad Pro series:

    • iPad Pro 12.9-inch (1st generation)
    • iPad Pro 9.7-inch (1st generation)
    • iPad Pro 10.5-inch (1st generation)
    • iPad Pro 12.9-inch (2nd generation)
    • iPad Pro 11-inch (1st generation)
    • iPad Pro 12.9-inch (3rd generation)

Resources


Related

34728 questions
115
votes
31 answers

Not able to type in textfield in iphone simulator using Mac Keyboard?

I'm working on a basic iOS app which supports both portrait and landscape modes. When the iPhone simulator keyboard is open in landscape and I'm switching the app to portrait mode I'm unable to type anything in any text field using my Mac physical…
Deepak Carpenter
  • 1,504
  • 2
  • 10
  • 21
115
votes
8 answers

How to set the UITableView Section title programmatically (iPhone/iPad)?

I've created a UITableView in Interface Builder using storyboards. The UITableView is setup with static cells and a number of different sections. The issue I'm having is that I'm trying to setup my app in several different languages. To do this I…
user843337
114
votes
9 answers

Navigation bar appear over the views with new iOS7 SDK

CGRect cgRect1 = [[UIScreen mainScreen] applicationFrame]; UISearchBar *mySearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, cgRect.size.width, 40)]; mySearchBar.autoresizingMask = …
user2110287
114
votes
29 answers

Is it possible to use AutoLayout with UITableView's tableHeaderView?

Since I discovered AutoLayout I use it everywhere, now I'm trying to use it with a tableHeaderView. I made a subclass of UIView added everything (labels etc...) I wanted with their constraints, then I added this CustomView to the…
ItsASecret
  • 2,589
  • 3
  • 19
  • 32
113
votes
6 answers

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 manually (and presumably more reliable code that comes as…
Simon Withington
  • 1,485
  • 2
  • 11
  • 17
110
votes
7 answers

Is there a UIView resize event?

I have a view that has rows and columns of imageviews in it. If this view is resized, I need to rearrange the imageviews positions. This view is a subview of another view that gets resized. Is there a way to detect when this view is being resized?
live-love
  • 48,840
  • 22
  • 240
  • 204
110
votes
15 answers

iOS Safari – How to disable overscroll but allow scrollable divs to scroll normally?

I'm working on an iPad-based web app, and need to prevent overscrolling so that it seems less like a web page. I'm currently using this to freeze the viewport and disable overscroll: document.body.addEventListener('touchmove',function(e){ …
Jeff
  • 1,294
  • 2
  • 9
  • 6
108
votes
3 answers

Override setter with arc

@interface Article : NSObject @property (nonatomic, strong) NSString *imageURLString; @end @implementation Class @synthesize imageURLString = _imageURLString; - (void)setImageURLString:(NSString *)imageURLString { _imageURLString =…
rowwingman
  • 5,589
  • 7
  • 33
  • 50
107
votes
3 answers

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 when we want to charge for the library/framework, we…
Proud Member
  • 40,078
  • 47
  • 146
  • 231
104
votes
9 answers

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? I searched for much time, no extract clues for this. I know how to set up a NSAttributedString, then what should…
Jack
  • 3,913
  • 8
  • 41
  • 66
103
votes
16 answers

detect ipad/iphone webview via javascript

Is there a way to detect with JavaScript if the website runs inside the iPad's Safari or inside an application WebView?
sod
  • 3,804
  • 5
  • 22
  • 28
102
votes
15 answers

iOS 7 TableView like in Settings App on iPad

I want to have a group UITableView with the style same like the iPad Settings application Detail view for iOS 7. It is a tableView with rounded corner. Please check the attachment for details. Is some default settings to make it look like that or we…
Ekra
  • 3,241
  • 10
  • 41
  • 61
102
votes
4 answers

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 labeled 'Exit'. I can find anything about it, nor…
Josh Kahane
  • 16,765
  • 45
  • 140
  • 253
101
votes
12 answers

How to get UILabel to respond to tap?

I have discovered that I can create UILabel much faster than UITextField and I plan to use UILabel most of the time for my data display app. To make a long story short though, I wish to let the user tap on a UILabel and have my callback respond to…
Happy
  • 1,013
  • 2
  • 7
  • 4
101
votes
10 answers

What are the sizes used for the iOS application splash screen?

I am developing an application using the iOS SDK. I need to know what Default splash screen sizes I need.
a111
  • 2,125
  • 5
  • 20
  • 21