Questions tagged [iphone-6]

iPhone 6 is the first Apple iPhone that offers NFC, and comes with modern larger screen sizes than previous iPhones.

iPhone-6 is the Sept 2014 refresh of Apple's iPhone line.

It brings with it a few new features such as:

  • a larger screen (4.7 in)
  • NFC
  • rounded edges
  • storage size up to 128GB

Other updates are more evolutionary:

  • improved camera (which protrudes from the back)
  • improved processor
  • improved battery life

There is also an iPhone 6 Plus, which has an even larger screen (5.5 in), and has the software advantage of working in landscape mode as well as portrait and a better battery life.

More detailed specification

347 questions
0
votes
1 answer

how make app work on iPhone 6 with existing code

this code is in my app delegate..... @implementation AppDelegate - (UIStoryboard *)grabStoryboard { UIStoryboard *storyboard; // detect the height of our screen int height = [UIScreen mainScreen].bounds.size.height; if (height ==…
meno
  • 21
  • 3
0
votes
1 answer

IOS 8 asset catalog image sizes confusing

Say I want to make a button that takes up half the width of the iPhone screen (portrait) at @1x. This would be 160 pixels, @2x this would be 320 pixels. Now with iPhone 6 and iPhone 6 plus it gets confusing. The iPhone 6 has 750 pixels width and…
Pulsarman325
  • 214
  • 3
  • 16
0
votes
1 answer

Startup screen for iPhone 6 & plus showing the good one then briefly showing Default-Portrait@2x~iphone.png

I didn't want to introduce an asset catalog. So I added images in Info-plist (as specified in this answer). It works, the native resolution of iPhone 6 (&plus) are recognised, but I have a problem : it shows first the startup screen…
Samuel
  • 5,439
  • 6
  • 31
  • 43
0
votes
0 answers

Custom UITableViewCell on iPhone 6

I have a question for you. I'm using a custom UITableViewCell for my app, designed in a .xib file. Everything work fine on my iPhone 5, but on iPhone 6, the layout of the cell is not correct. Here a screenshot on iPhone 5 : Here on iPhone 6 : Do…
ThibaultV
  • 529
  • 1
  • 5
  • 24
0
votes
2 answers

iPhone 5/5c/5s family: NFC emulation

Everybody knows that Apple introduced NFC with their iPhone 6 smartphones breed. I am curios: are there any ways to emulate NFC on iPhone 5/5c/5s ? Could it be simulated somehow with hardware iPhone 5-series provide?
nickolay
  • 3,643
  • 3
  • 32
  • 40
0
votes
1 answer

Using the emulator in Google Chrome, what should I enter for an iPhone 6?

Google Chrome's emulation feature requires you to enter the device resolution and the device pixel ratio. It has presets for iPhone 5 but not for iPhone 6 or iPhone 6+ yet. Do you know what resolution and pixel ratio I should be entering for iPhone…
0
votes
4 answers

How do I specify fullscreen background images in Xcode so redundant images aren't installed to devices?

I am developing an ObjC iPhone app in Xcode 6, targeting iOS 7 as the minimum version. I have fullscreen background images for the main UIViewController instance in my app. The app uses four visual themes, and each background now comes in three…
bneely
  • 9,083
  • 4
  • 38
  • 46
0
votes
1 answer

MPMoviePlayerController slow streaming : MPMoviePlayerLoadStateDidChangeNotification takes time in iOS8

I am facing issue in iOS8, it took more time(around 4-8 sec) in MPMovieSourceTypeStreaming for iOS8 while song is played faster in iOS7 Here is my code: self.moviePlayerController.movieSourceType =…
Zoeb S
  • 695
  • 1
  • 7
  • 21
0
votes
1 answer

iPhone 6 - Using precisely sized images through naming convention

Apple's HIG has the following to say regarding graphical assets for iPhones: Support the Retina display. Make sure that you supply high resolution assets for all artwork and graphics in your app. In particular, supply @3x assets for iPhone 6 Plus…
Madhu
  • 2,429
  • 16
  • 31
0
votes
1 answer

iPhone6, iPhone 6 plus: What naming convention the new images have to follow?

For iPhone4-5, we have to have 3 default images to be loaded by the device Default.png Default@2x.png and Default-568h@2x.png IS there any naming convention for iPhone6 and 6 plus?
Gaurav Borole
  • 796
  • 2
  • 13
  • 32
0
votes
1 answer

Xcode 6.0.1 & iOS 8 is messing up my code and output on simulator and iphone

I am finding that Xcode 6.0.1 is messing up my code and output on simulator and iphone Xcode 6 is making my landscape games look like crap on the simulator and phone (iOS 8). When I run it on simulator for iOS 7 it works fine. Does not run still…
0
votes
1 answer

Xcode 6 not deploying on iPhone 6

When I press Run on my Xcode 6.0.1 (latest version at this time), the build succeeds, Xcode logs: -AppName- is currently running on -DeviceName- But nothing happens on my device.
sweepy_
  • 1,333
  • 1
  • 9
  • 28
0
votes
1 answer

Safari crashes after few moments of it launching on iPhone 6 and iPhone 6 plus simulator

When I try to launch Safari on iPhone 6 and iPhone 6 Plus simulator, it crashes after few moments of its launching automatically. I try to close simulator and try once again by launch simulator again but same issue occurs.
Pradhyuman Chavda
  • 3,814
  • 4
  • 16
  • 24
0
votes
0 answers

Detecting device after iPhone 6 has been released

Is there any way to detect, whether it is iPhone 5, iPhone 6 or iPhone 6+? Earlier I did it based on resolution: if ([[UIScreen mainScreen] bounds].size == 568) NSLog(@"4 inch"); else NSLog(@"3.5 inch"); But now all the resolutions (4, 4.7,…
demon9733
  • 1,054
  • 3
  • 13
  • 35
0
votes
1 answer

Developing for IPhone 4s, 5, 6 and 6+

I've been working on a specific app for a while now and everything was good. But upon all this news of the iPhone 6 and the new Xcode, everything has just become confusing. Using Auto layout and designing for the iPhone have just become the most…
Markinson
  • 857
  • 1
  • 7
  • 13