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

State Restoration with Multiple Storyboards

I am working on a project with multiple storyboards. I want to implement state restoration in this project. I am having a problem linking the ViewControllers on second storyboard into the state restoration process. encodeRestorableStateWithCoder: &…
jpsasi
  • 1,905
  • 2
  • 18
  • 29
6
votes
3 answers

Testflight iOS8 - Non Apple ID Account

I've just installed the latest testflight app on my personal iphone 6. We've got a company testflight user logins which are completely separate from our personal accounts. However when I launch the testflight app it wants to use my Apple ID - which…
owenmelbz
  • 6,180
  • 16
  • 63
  • 113
6
votes
5 answers

How can I check does my ios8 custom keyboard extension have open access?

In my ios 8 keyboard extension I wanna check did user gave my keyboard open access or not. But I couldn't find any API. Swiftkey and other custom keyboards somehow solve that problem
unknown
  • 121
  • 1
  • 9
6
votes
4 answers

Display status bar on landscape orientation for iOS 8

Currently using XCode6 at the moment. Since this version of XCode only supports iPhone4 and above with OS version (7.0.3 onwards). I have this application solely designed with a landscape orientation to all of the views in the storyboard. Testing…
David B
  • 3,269
  • 12
  • 48
  • 80
6
votes
0 answers

Random CFNetwork SSLHandshake failed (-9806) on ios 8 with invalid ssl certificates

I am getting CFNetwork SSLHandshake failed (-9806) error on ios 8. Same code works fine on ios 7 but fails on ios 8 randomly.
Subba Rao
  • 10,576
  • 7
  • 29
  • 31
6
votes
1 answer

wkwebview with location services

Ive been experimenting with swift and wanted to try out the wkwebview. Ive built an app and it all works correctly but the problem is that the webpage that i load into my wkwebview uses google maps and requires location services, so the javascript…
Zolve
  • 514
  • 5
  • 13
6
votes
2 answers

UIVisualEffectView on UITableView background

I am creating a UITableViewController (at the root of a UINavigationController) and presenting this modally on top of another view controller. I have it working to an extent, such that when the view loads and viewDidAppear is called, the visual…
Z S
  • 7,039
  • 12
  • 53
  • 105
6
votes
1 answer

Delete/Discard previously saved data from HealthKit

I'm developing an app that gives the users the option to track what they ate. One of the features the app suggest is to select a food item as Eaten. When a user does that, I share that info with the HealthKit. A user can then decide to uncheck that…
goldengil
  • 1,007
  • 9
  • 25
6
votes
1 answer

ios8 UIAlertView becomeFirstResponder for Password UITextField not working

This was working OK in iOS7. After upgrading to iOS8 it is strangely not working. So, if the user has already logged in before, the username is saved and a password is required. Quite simply, I was just inputting the username in the 0 index…
drexel sharp
  • 323
  • 1
  • 9
6
votes
1 answer

iOS 8 Europe/Moscow Time Zone Issue

This strange issue appeared with ios 8 release. Here is sample code: NSDate * date = [NSDate dateWithTimeIntervalSince1970:1414785600]; dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setLocale:[[NSLocale alloc]…
6
votes
4 answers

TabBarItem icon does not appear immediately in ios 8

I have a problem with tabBarItem icon.Here is a screenshot of a part of my storyboard. There is a basic viewController with some buttons. When one of these buttons is touched up, a tabBarController with three tabs appears.In iOS 8,icons of…
hoya21
  • 893
  • 7
  • 24
6
votes
4 answers

Is there any way to disable predictive bar of keyboard in ios 8?

So we have predictive bar in iOS 8 but it covers my input field above the keyboard. I found only one solution to hide it by setting correction of textView to NO. But it turns off correction as well which is not good.Any suggestions?Is there any api…
efimovdk
  • 368
  • 4
  • 16
6
votes
1 answer

XCode 6.0.1 ios 7 Autolayout

I have found that applications built in XCode 6 for ios 7 have different behavior from same apps built for ios 8. There is something wrong with autolayout constraints. For example some bottom and trailing spaces won't work if I build app in XCode 6…
kostyl
  • 339
  • 3
  • 15
6
votes
2 answers

Font Descriptor returns nil in iOS 8

The following code works fine in iOS 7, but doesn't return bold or italic font in iOS 8. It is ok for Helvetica Neue, but doesn't work for Arial font. UIFontDescriptor *descriptor1 = [UIFontDescriptor…
Metodij Zdravkin
  • 914
  • 1
  • 14
  • 23
6
votes
1 answer

"bad packing" notification in xcode console

After switching to xcode 6 I began to receive this notification in the console when running my app on iOS8 iphone simulator or real device. What I see in my log after i receive some data from forecast server is something like this: 2014-09-22…
Thorax
  • 2,352
  • 1
  • 22
  • 27