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
10
votes
5 answers

How to convert HEX to NSString in Objective-C?

I have a NSString with hex string like "68656C6C6F" which means "hello". Now I want to convert the hex string into another NSString object which shows "hello". How to do that ?
user403015
  • 7,209
  • 19
  • 66
  • 100
10
votes
7 answers

UITableView - How to show rows only which contains data

How can i show UITableView Rows only which contains data not the other rows. By default UITableView shows 10 rows. If we have data for three rows It will display three rows only How can I implement this? Thank you.
nitesh meshram
  • 281
  • 2
  • 4
  • 10
10
votes
2 answers

speed of setRegion for MKMapView

If I change the region in setRegion for an MKMapView, is there a way to set the speed, or duration, of that animation change? I've looked through the documentation and the Googles, but found nothing.
thekevinscott
  • 5,263
  • 10
  • 44
  • 57
10
votes
4 answers

viewDidLoad and awakeFromNib timing

It is my understanding that awakeFromNib will always be called before viewDidLoad. So I have a subclass of a UITableViewController, which is unarchived from a xib file. I defined these two methods inside: - (void)awakeFromNib { [super…
bogardon
  • 896
  • 2
  • 10
  • 22
10
votes
5 answers

html5

I have an mp3 which plays correctly via the embed tag in older browsers, but for iPad, when I try to play the same mp3 via
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
10
votes
3 answers

Video Calling Library for ios

Is there a library or any way to embed video chat capability in a ios application ?
pradyumnad
  • 553
  • 4
  • 23
10
votes
1 answer

iPad Zoom Scale Detection

I'm trying to find a way to detect how zoomed in someone is on a web app so that when they click to pull up a menu, the menu stays the same size regardless of the zoom. To do that, I need to be able to scale the size of the menu appropriately…
Mason
  • 6,893
  • 15
  • 71
  • 115
10
votes
4 answers

iOS Develoment: Why is my NSURLConnection failing with a "bad URL" error for only some users?

I have an iOS app that requests JSON data from my Rails 3 app, hosted on Heroku, and it works great on my device and for many other users, except one. I have one user who has told me that my app fails to retrieve the JSON data, so I had her send me…
BeachRunnerFred
  • 18,070
  • 35
  • 139
  • 238
10
votes
1 answer

UITableView has no scrolling

I have a UIViewController which uses the UITableViewDelegate and UITableViewDataSource. I have created UITableView with about 20 custom UITableViewCells and not all those UITableViewCells fit on the screen. Naturally you would think that it is…
fes
  • 2,465
  • 11
  • 40
  • 56
10
votes
4 answers

How can I implement a scrollable

I have a page which uses a scrollable
:
...Huge Content
Now while it works fine in desktop browsers, I am unable to scroll on the iPad. Could you please provide a solution…
hmthr
  • 7,711
  • 5
  • 19
  • 13
10
votes
2 answers

Ignoring UIGestureRecognizer when hitting button

I have a gesture recognizer set up so that my toolbar slides down when the screen is tapped. When I hit a button on the bar, that counts as a tap. How do I cancel the gesture in those cases? Thanks
codeetcetera
  • 3,213
  • 4
  • 37
  • 62
10
votes
3 answers

Erasing after drawing with CGContext

I'm trying to do a simple drawing app for the iPad where you can draw on a picture, and I'm using CGContext stuff to do it but the way I originally planned on handling erasing was to just draw over stuff with white...except I just realized today…
Lindsey
  • 235
  • 3
  • 11
10
votes
1 answer

ipad app exited abnormally with signal 11: Segmentation fault: 11

My app exited abnormally with signal 11. I don't know what that means. There is no crash log and the debugger shows no error. The app is just gone. I got the following log. Apr 27 21:31:31 unknown Apollo[1408] : bring tab…
Slavik
  • 1,053
  • 1
  • 13
  • 26
10
votes
1 answer

SwiftUI: Path's coordinateSpace

So I've got the following code: import SwiftUI struct ContentView : View { @State private var draggingLocation = CGPoint.zero @State private var startLocation = CGPoint.zero @State private var dragging = false var body: some View…
adammenges
  • 7,848
  • 5
  • 26
  • 33
10
votes
2 answers

Shuffling an array in objective-c

Possible Duplicate: What’s the Best Way to Shuffle an NSMutableArray? I develop apps for iphone/iPad.I want to shuffle the objects stored in an NSArray.Is there any way to achieve it with objective-c?
Hariprasad
  • 1,094
  • 2
  • 12
  • 30
1 2 3
99
100