Questions tagged [ios8]

iOS 8 is the eighth version of Apple's iOS mobile operating system. It was announced at the company's Apple Worldwide Developers Conference (WWDC) on June 2, 2014 and was released to the public on September 17, 2014. The ios8 tag should be used for questions specific to Apple's iOS 8 operating system. General iOS questions should use the ios tag.

The biggest developer release yet with more than 4,000 new APIs. (See iOS 8 API Differences) iOS 8 allows developers to further customize the user experience with major extensibility features additions:

  • Notification Center widgets
  • Third-party keyboards
  • App extensions

This release also introduces robust frameworks such as:

  • HealthKit
  • HomeKit
  • LocalAuthentication
  • Photos
  • CloudKit

iOS 8 also includes Metal, a new graphics technology that maximizes the performance of the A7 chip with 10x performance and Swift, a powerful new programming language. SceneKit framework is introduced to build apps with 3D graphics and with high performance. Unified storyboard makes it easier to develop the interface for both iPhone and iPad with orientation and different screen size as well.

iOS and OS X introduces a new feature Handoff that extends the user experience of continuity across devices. Handoff enables users to begin an activity on one device, then switch to another device and resume the same activity on the other device.

Compatibility

iOS 8 supports the following devices:

  • Phone 4S
  • iPhone 5
  • iPhone 5S
  • iPhone 5C
  • iPhone 6
  • iPhone 6 Plus
  • iPhone 6S
  • iPhone 6S Plus
  • iPad 2
  • iPad 3
  • iPad 4
  • iPad Air
  • iPad Mini
  • iPad Mini 2
  • iPad Mini 3
  • iPad Mini 4
  • iPod Touch 5G

iOS 8 Latest Version

9298 questions
6
votes
1 answer

UIPresentationController changes size when another view controller is displayed on top of it

I am presenting a modal view controller using UIPresentationController. I am setting the frame of presentedView less than the containView's bounds using following method: override func frameOfPresentedViewInContainerView() -> CGRect { let myDX =…
6
votes
4 answers

System font for both iOS 8 and iOS 9

I want to support both iOS 8 and iOS 9 systems for my app. And maybe iOS 7. As we know, system font for iOS 7 and 8 is Helvetica Neue. But in iOS 9 system font is San-Francisco. And if you don't set Helvetica font explicitly via [UIFont…
Valentin Shamardin
  • 3,569
  • 4
  • 34
  • 51
6
votes
1 answer

iOS app only plays sounds through headphones

The iPhone I'm using for development only outputs sounds through the headphones for all the apps I'm running from xcode. Other apps (like Youtube or iTunes) play sound just fine, and also building and testing the very same apps on a different device…
Marius Pop
  • 334
  • 2
  • 6
6
votes
3 answers

iOS8/Swift and MobileVLCKit build fails

I'm struggling a bit to build my project with MobileVLCKit and cocoapods. Without adding any VLCKit code, I get errors when building the app, on simulator or device. Pod file: platform :ios, '8.0' target 'VLCKitTest' do pod…
lorenzo
  • 1,487
  • 1
  • 17
  • 25
6
votes
3 answers

XCTest fails with with exception 'Non-UI clients cannont be autopaused'

I am trying to test creation of CLLocationManager as a singletone with default parameters: + (GeolocationService *)defaultGeolocationService { static GeolocationService *_defaultGeolocationService = nil; static dispatch_once_t…
Nadzeya
  • 641
  • 6
  • 16
6
votes
2 answers

SKEmitterNode isn't removing itself from parent?

I added SKEmitterNode as a childNode of my mainScene and than expected that It would be removed when particleLifetime ends, described like apple docs. Added emitters like this; var emitterPath : String =…
mert
  • 1,090
  • 13
  • 26
6
votes
1 answer

UITableViewAutomaticDimension not working properly with Subtitle UITableViewCells

I'm creating a 2 sections UITableView. The first section uses UITableViewCells with the Default style, the second uses Subtitle style. Both cells may have a multiline text label. I've set the table's rowHeight to UITableViewAutomaticDimension. As…
gpbl
  • 4,721
  • 5
  • 31
  • 45
6
votes
3 answers

Display date in "st" , "nd", "rd" and "th" format

I have to display date in different format. For eg. 21st July I didn't find anything to convert my date in this format. If anyone knows please help me.
Abha
  • 1,032
  • 1
  • 13
  • 36
6
votes
4 answers

Can we have 2 ios apps with same bundle id target different ios?

Can we have 2 iOS apps with same bundle id target different iOS? In a scenario, I would like to keep my app supporting iOS 8 and create a new app from scratch supporting only iOS 9 with same bundle id. So user on iOS 8 will be able to install…
user2084611
  • 450
  • 3
  • 8
6
votes
1 answer

Detecting DNS failure with NSURLSession background config?

Is it possible to detect DNS lookup failures when using NSURLSession with a background configuration ? If I use a default config and a completion handler, DNS resolution failure is reported in the error parameter. If I use a background configuration…
6
votes
3 answers

My device is busy: Copying Symbol Files in Xcode 6.4

I am getting this warning, when I try to run app in my device. Kindly guide me how to solve this. I am trying fro past two days. I unable to do. Copying Symbol Files is in status bar. Progress view also not get loaded. I referred some answers in…
McDonal_11
  • 3,935
  • 6
  • 24
  • 55
6
votes
3 answers

How to use the keyboard "Go" to submit UITextFields like a UIButton in Swift 2

Ok so I have a function that allows my user to use the keyboard to go to the next field (Which I got the code from SO) It works perfect. My problem is, once my user gets to the final text field, in which, I've selected "GO" as the return button, and…
Sin
  • 265
  • 2
  • 7
  • 20
6
votes
2 answers

CGAffineTransformMakeRotation with negative M_PI

I'm using CGAffineTransformMakeRotation to rotate a UIView inside an animation block, and I want to rotate it counterclockwise for 180º. However when I put myView.animateWithDuration(0.5) myView.transform =…
gpbl
  • 4,721
  • 5
  • 31
  • 45
6
votes
2 answers

Core Data predicate crashes when attribute is nil

tl;dr: type something here that won't crash if birthDate is nil: I have an entity with a birthDate attribute and a fetched property with the following predicate, typed straight into the xcdatamodel file: $FETCH_SOURCE.birthDate > birthDate This…
DenverCoder9
  • 3,635
  • 3
  • 31
  • 57
6
votes
2 answers

iOS 8 simulators not visible in XCode 7 beta

I'm using the XCode 7 beta that Apple released during WWDC2015, and it looks like iOS8 simulators are not there in it. I tried downloading them using the Xcode > Preferences > Downloads > Components, but it doesn't list the simulators. I have Xcode…
Tejas HS
  • 2,565
  • 2
  • 16
  • 13