Questions tagged [ipad-3]

The 3rd Generation Apple iPad.

The third generation of iPad known as "iPad 3" is a tablet computer designed, developed and marketed by Apple Inc. The 3rd generation iPad adds a Retina display, the new Apple A5X chip with a quad-core graphics processor, a 5 megapixel camera, full HD 1080p video recording, voice dictation, and 4G (LTE). It shipped with iOS 5.1, which serves primarily as a platform for audio-visual media, including electronic books, periodicals, films, music, computer games, presentations, web content. Apple.

76 questions
28
votes
10 answers

How to get current orientation of device programmatically in iOS 6?

I have developed an iOS App and tested it on iOS6 device. While testing, I realized that my App is not responding to Orientation changes as expected. Here is my Code: // Autorotation (iOS >= 6.0) - (BOOL) shouldAutorotate { return NO; } -…
Code Hunter
  • 10,075
  • 23
  • 72
  • 102
21
votes
6 answers

The New iPad: Low Memory Warnings Not Appearing?

I have been developing an application for iPad that is very graphically intensive. I have been able to squeeze quite a bit of performance out already on the iPad 2, but the @2x graphics for the new iPad are packing quite the punch in the memory…
Wayne Hartman
  • 18,369
  • 7
  • 84
  • 116
13
votes
3 answers

Choppy Animation and Scrolling Performance on "New iPad" (Retina iPad 3)

I've been working on an iPad app that has gone through fairly extensive testing on the iPad 2. I recently obtained a "New iPad" (iPad 3), and the app feels significantly slower. Animations / scolling behaviors that were silky smooth in the iPad 2…
David Li
  • 305
  • 2
  • 7
13
votes
2 answers

UIImageWriteToSavedPhotosAlbum does not work in iOS 6 iPad 3

I'm using the next function to save photos in my app: UIImageWriteToSavedPhotosAlbum(pngImage, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL); It works well on iOS 5.1.1 devices, and iPod/iPhone iOS 6.0 devices. But strangely…
user1571685
  • 131
  • 1
  • 3
10
votes
3 answers

Dismissing a UIDocumentInteractionController in some cases will remove the presenting view controller's views in IOS 7 iPad

When the UIDocumentInteractionController is dismissed, the presenting view controller's views are removed, including elements from the UINavigationController. The UIDocumentInteractionController dismisses and the presenting view controller's views…
Gaurav
  • 299
  • 4
  • 15
9
votes
1 answer

Is CoreGraphics (much) slower on the new iPad?

I just got the new iPad(3) and currently testing out a high resolution version of my drawing app that uses CoreGraphics. In normal 1024x768 mode, the iPad is more or less similar in performance - with only a slight lag when drawing quickly. But when…
machineboy
  • 321
  • 3
  • 14
6
votes
2 answers

iPad 3 renderInContext slow - Bad rendering performance

I am trying to get an image out of a view where a user can paint on, or add some other views. With the iPad1 & 2 everything is working fine so far. But on the iPad3 it runs like a dog. I am just using the layers renderInContext method. if…
Alexander
  • 7,178
  • 8
  • 45
  • 75
6
votes
2 answers

what is image size(resolution) for iPad 3 application development?

As we know iPad 3 have 2048×1536 resolution. for iPhone 4 with retina display we put big image with name @2X and one normal image in our bundle. so for iPad 3 application development we also need to put two images one is normal size and other with…
Gaurav Thummar
  • 780
  • 1
  • 12
  • 22
5
votes
0 answers

Issue scrolling div with Safari on iPhone 6+, iPad 3 when zoomed in

It seems that on iPhone 6+ and iPad 3 (devices I've tested so far which reproduce issue) there is an issue with scrolling a div when the page is zoomed in. When first loading a page with the following basic content, the div has no problem…
user1968029
  • 51
  • 1
  • 4
5
votes
1 answer

Can cocos2d support 4096x4096 texture on Ipad3?

Ipad1 can only support 2048x2048, so I want to know ipad retina support bigger size texture. I use cocos2d v1.01
zszen
  • 1,428
  • 1
  • 14
  • 18
4
votes
0 answers

Pac file not working as proxy for ipad

I am attempting to setup a pac file as proxy for an ipad running ios version 8.4. I setup the ipad to use the proxy by pointing the auto configuration url under wifi settings to point the pac file: https://myproxyserver:2020/proxy.pac This is the…
Robert Smith
  • 779
  • 1
  • 10
  • 28
4
votes
1 answer

is the ipad 3 device-width always 768 even though the resolution width is 1536 in the viewport meta tag?

I am trying to understand the viewport meta tag for ios devices. I created a test page, where I inserted an image that is 862px wide. so i have the viewport meta tag as:
Masu
  • 1,568
  • 4
  • 20
  • 41
4
votes
2 answers

Screenshot Using UIGraphicsBeginImageContextWithOptions For iPad 3 (Retina)

I am taking a screenshot using the following code: // Returns 1024x768 for iPad Retina CGSize screenDimensions = [[UIScreen mainScreen] bounds].size; // Create a graphics context with the target size // (last parameter takes scale…
user542428
  • 813
  • 8
  • 15
4
votes
1 answer

Splash screens on iPad 3

I am developing an application that should work correctly on both iPad 2 and iPad 3. I have spash portrait and landscape screens. I use Default-Portrait.png with size 768x1004 and Default-Landscape.png with size 1024x768 for iPad2 splash screens,…
KLK
  • 41
  • 2
3
votes
3 answers

CSS Media Queries on iPad 3 (or the new iPad)

Is there going to be any difference in applying the CSS Media Queries for detecting the iPad 3 or the new iPad? Also the iPad 1 and iPad 2 returned device-width as 768px in both orientations. So is that the same on iPad 3 as well ?
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
1
2 3 4 5 6