Apple May Adopt 1704 x 960 Resolution Display for Upcoming iPhone 6

Apple's next generation iPhone 6 may adopt a higher resolution display, jumping from the current iPhone 5s resolution of 1136 x 640 to a sharper 1704 x 960 resolution, reports 9to5Mac. On the rumored 4.7-inch model, this would result in a display with 416 ppi and the same 16:9 ratio of the iPhone 5/5s/5c, while a 5.5-inch model at the same resolution would carry a density of 356 ppi.

iphone6
With Apple's rumored move to larger displays in the iPhone 6, much discussion has been centered around what resolution Apple will use and how any changes would affect developers. Some speculation had suggested Apple might simply maintain the same resolution as on the iPhone 5s, making a seamless transition for developers. This stretch process would, however, drop the pixel density of the display below Apple's criteria for a "Retina" display.

Alternatively, Apple could boost the resolution to maintain or increase the pixel density, although this move would require work from app developers to maintain compatibility with the new devices. KGI Securities analyst Ming-Chi Kuo suggested last month that Apple would maintain the current 326 ppi density, which could be achieved by bumping a 4.7-inch display to 1334 x 750, and we previously explored how that might work.

But according to 9to5Mac, Apple may adopt an even higher-resolution display that triples the base number of pixels of the iPhone screen in both length and width. This "3x" mode would take the base "1x" resolution of 568 x 320 and expand it to 1704 x 960. Using this method, Apple would retain the Retina branding at 416 ppi and keep the current 16:9 ratio of the iPhone 5/5s/5c.

This means that Apple will likely be tripling the aforementioned “base resolution” (568 x 320) of the iPhone screen in both directions, and that the iPhone screen resolution will be scaled with an increase of 150% from the current 2X resolution of 1136 x 640. Of course, Apple tests several different iPhones and display technologies, so it is possible that Apple chooses to take another route for display specifications for the 2014 iPhone upgrade.

Apple has allegedly been testing this 1704 x 960 resolution and while the design specs for the iPhone 6 are undoubtedly complete, it is not known for sure if Apple has elected to proceed with this resolution. Apple may be preparing to launch the 4.7-inch iPhone 6 sometime this fall with a faster A8 processor and improved camera technology.

Tag: 9to5Mac
Related Forum: iPhone

Popular Stories

iPhone 17 Pro Lower Logo Feature 1

iPhone 17 Pro Coming Soon With These 14 New Features

Monday June 30, 2025 1:08 pm PDT by
Apple's next-generation iPhone 17 Pro and iPhone 17 Pro Max are less than three months away, and there are plenty of rumors about the devices. Apple is expected to launch the iPhone 17, iPhone 17 Air, iPhone 17 Pro, and iPhone 17 Pro Max in September this year. Below, we recap key changes rumored for the iPhone 17 Pro models:Aluminum frame: iPhone 17 Pro models are rumored to have an...
Apple Watch Ultra Night Mode Screen

Apple Watch Ultra 3 Launching Later This Year With Two Key Upgrades

Wednesday July 2, 2025 1:13 pm PDT by
The long wait for an Apple Watch Ultra 3 appears to be nearly over, and it is rumored to feature both satellite connectivity and 5G support. Apple Watch Ultra's existing Night Mode In his latest Power On newsletter, Bloomberg's Mark Gurman said that the Apple Watch Ultra 3 is on track to launch this year with "significant" new features, including satellite connectivity, which would let you...
iPhone 17 Pro Lower Logo Magsafe

iPhone 17 Pro's New MagSafe Design Revealed in Leaked Photo

Wednesday July 2, 2025 8:37 am PDT by
The upcoming iPhone 17 Pro and iPhone 17 Pro Max are rumored to have a slightly different MagSafe magnet layout compared to existing iPhone models, and a leaked photo has offered a closer look at the supposed new design. The leaker Majin Bu today shared a photo of alleged MagSafe magnet arrays for third-party iPhone 17 Pro cases. On existing iPhone models with MagSafe, the magnets form a...
Wi Fi WiFi General Feature

iOS 26 Adds a Useful New Wi-Fi Feature to Your iPhone

Wednesday July 2, 2025 6:36 am PDT by
iOS 26 and iPadOS 26 add a smaller yet useful Wi-Fi feature to iPhones and iPads. As spotted by Creative Strategies analyst Max Weinbach, sign-in details for captive Wi-Fi networks are now synced across iPhones and iPads running iOS 26 and iPadOS 26. For example, while Weinbach was staying at a Hilton hotel, his iPhone prompted him to fill in Wi-Fi details from his iPad that was already...
iPhone 17 Pro in Hand Feature Lowgo

iPhone 17 Pro Max Battery Capacity Leaked

Thursday July 3, 2025 5:40 am PDT by
The iPhone 17 Pro Max will feature the biggest ever battery in an iPhone, according to the Weibo leaker known as "Instant Digital." In a new post, the leaker listed the battery capacities of the iPhone 11 Pro Max through to the iPhone 16 Pro Max, and added that the iPhone 17 Pro Max will feature a battery capacity of 5,000mAh: iPhone 11 Pro Max: 3,969mAh iPhone 12 Pro Max: 3,687mAh...
iOS 18

Apple Releases Second iOS 18.6 Public Beta

Tuesday July 1, 2025 10:19 am PDT by
Apple today seeded the second betas of upcoming iOS 18.6 and iPadOS 18.6 updates to public beta testers, with the betas coming just a day after Apple provided the betas to developers. Apple has also released a second beta of macOS Sequoia 15.6. Testers who have signed up for beta updates through Apple's beta site can download iOS 18.6 and iPadOS 18.6 from the Settings app on a compatible...
maxresdefault

New MacBook With A18 Pro Chip Spotted in Apple Code

Monday June 30, 2025 8:05 am PDT by
Apple is developing a MacBook with the A18 Pro chip, according to findings in backend code uncovered by MacRumors. Subscribe to the MacRumors YouTube channel for more videos. Earlier today, Apple analyst Ming-Chi Kuo reported that Apple is planning to launch a low-cost MacBook powered by an iPhone chip. The machine is expected to feature a 13-inch display, the A18 Pro chip, and color options...

Top Rated Comments

pgiguere1 Avatar
145 months ago
It’s been a year since I started speculating that the iPhone 6 would have an @3x display, and so far a common reaction is always “But Steve Jobs said pixel-doubling was necessary when introducing the iPhone 4!”.

It’s important to understand why @2x made sense to also understand why @3x does:

1) It was an integer scaling multiplier.

Xcode/Cocoa use a “points” system for every possible coordinate/dimension. Those don’t represent pixel values unless you’re using a non-Retina display (@1x). For everything else, the pixel dimensions of elements are found using points * scaling multiplier. For example, an iPhone 5 is seen as being 568x320 points * @2x = 1136x640 pixels.

If you had a floating point scaling multiplier, say @2.5x, you’d end up with floating point pixel dimensions as well. For example, a 85x45 points UI element * @2.5x = 212.5 x 112.5 pixels. Oops, fractions of pixels! Since the screen can’t render those directly, multisampling will be applied to “blend” fractions of pixels (think of anti-aliasing). What it would look like is this (on the right):



You don’t want this blurry mess. Therefore, you don’t want your UI elements to end up with non-integer pixel dimensions. That’s why you want an integer scaling multiplier. In 2010 with the iPhone 4, @2x was chosen in large part because it was the next integer after 1, not because it’s the double. That means @3x would be an equally good scaling multiplier as far as keeping integer pixel dimensions goes.

2) It didn’t require scaling interpolation on older displays

Steve Jobs explained that one pretty clearly at WWDC.



One pixel would become a 2x2 pixel grid. No fancy math had to be done to “scale” older apps on the iPhone 4. But why does this matter? Because scaling interpolations often reduce quality (not for performance reasons, that’s insignificant). Keep in mind however that unlike with the @1x -> @2x transition we had in 2010, this time we’d only have a 50% enlargement rather than 100%.

The thing is, a 50% enlargement with interpolation doesn’t look worse than a 100% enlargement with pixel-doubling, despite the loss of details due to the interpolation.

See those examples I made with bilinear interpolation (iOS’ default interpolation when scaling images):



As you can see, older non-@3x-optimized apps would actually look better on an @3x iPhone than non-@2x-opitmized apps did on an @2x iPhone. Add to this the fact that the screen's pixel density would be higher this time around, and the perceived image quality difference would be even smaller.

Another common comment has been "But shouldn't developers be using AutoLayout constraints, which make apps pretty much resolution-independent? Therefore, who cares about the exact resolution?"

Yes, they should. But the reality is that most apps (even those using AutoLayout) wouldn't magically scale well to a bigger display like it was a responsive website. They would require significant tweaking before they could do that, and I can't see Apple forcing AutoLayout everywhere just yet. That would essentially force developers to redesign/test their app in around a month, unless which their app would probably look like crap on the iPhone 6. Since that's kind of an unrealistic timeframe, it's the consumers that would end up paying in the end. I think Apple will go through a smoother transition than that.

With the recent introduction of Asset Catalogs (https://developer.apple.com/library/ios/recipes/xcode_help-image_catalog-1.0/Recipe.html) in Xcode, I think it's pretty clear that Apple wants to introduce a new resolution. The fact images are still labeled by "@1x" and "@2x" also leads me to believe they're not ready to drop the points system just yet.
Score: 64 Votes (Like | Disagree)
regkilla Avatar
145 months ago
No 1080p at least? Come on Apple get it together!
Score: 15 Votes (Like | Disagree)
Anti-Lucifer Avatar
145 months ago
Just look at how much space is wasted in the iPad and you'll have the answer.

Ios on ipad is just pathetic waste of screen space it's purely blown up iPhone os. Terrible.
Score: 13 Votes (Like | Disagree)
furi0usbee Avatar
145 months ago
I won't be happy until I have 1000ppi. Anything less than 1000 won't impress me at all. I want *really* crisp.
Score: 10 Votes (Like | Disagree)
sualpine Avatar
145 months ago
Who cares what the resolution is?

All I want to know is how iOS is going to scale up. I don't want a pathetic new row of icons again.
Score: 10 Votes (Like | Disagree)
thasan Avatar
145 months ago
It’s been a year since I started speculating that the iPhone 6 would have an @3x display, and so far a common reaction is always “But Steve Jobs said pixel-doubling was necessary when introducing the iPhone 4!”.

It’s important to understand why @2x made sense to also understand why @3x does:

1) It was an integer scaling multiplier.
......

Yes, they should. But the reality is that most apps (even those using AutoLayout) wouldn't magically scale well to a bigger display like it was a responsive website. They would require significant tweaking before they can do that, and I can't see Apple forcing AutoLayout everywhere just yet. That would essentially force developers to redesign/test their app in around a month, unless which their app would probably look like crap on the iPhone 6. Since that's kind of an unrealistic timeframe, it's the consumers that would end up paying in the end. I think Apple will go through a smoother transition than that.
this is probably one of the most professional comments that i have seen in MR for a very very long time! thank you! :D
Score: 9 Votes (Like | Disagree)