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

displaysSearchBarInNavigationBar deprecated in iOS8

I'm trying to find an alternative to displaysSearchBarInNavigationBar for iOs8, is there anything I can use (in swift)? I tried self.navigationItem.titleView = resultSearchController.searchBar but it doesn't do anything. I don't understand how to…
Kalianey
  • 2,738
  • 6
  • 25
  • 43
6
votes
2 answers

setInitialText not work with IOS 8.3 (facebook,social,SLComposeViewController)

The functionality of SLComposeViewController no longer works as expected with the newest Facebook iPhone app update as of April 24th. Any initial text specified is ignored, though the setInitialText method returns true as if it was successful. The…
6
votes
0 answers

Application Share Extension not showing in Share Menu from second time in iOS

I have created application share extension to my app to share photos.For the first time i turned on my app from more.. in share menu.When I ran the app again even though my app is enabled previously its not showing in default Share Menu like…
ravi kiran
  • 61
  • 3
6
votes
3 answers

UIKeyboard Suggestions height for iOS 8 notification?

I'm trying to keep a text field sitting atop the keyboard in iOS 8. But when a user swipes up or down the top of the keyboard to show or dismiss iOS 8 word suggestions, I need to a notification of the new height of the keyboard so I can move my text…
Tony Friz
  • 883
  • 1
  • 10
  • 27
6
votes
2 answers

Fetching nearby places using google maps

Am trying to implement to find nearby places of my current location using google maps. I have created a project in Google Developer Console and got 'ios APIkey' and 'Server APIkey'. I also enabled Google Places API and Google Maps SDK for iOS. Below…
6
votes
1 answer

Swift: Creating a button that calls a method in another class1

I have 2 classes, the first class is named "store" where I create a button which calls a method: "storeSelected" located in the second class with the name ExploreViewController. The method should print "done" and take me to another view…
Omar Kayali
  • 113
  • 1
  • 2
  • 7
6
votes
1 answer

Check if user allowed local notifications or not. iOS 8. Obj-C

Is there no simple way of testing if the user has allowed local notifications? I noticed a warning in my console after I denied the sending of local notifications. When the relevant event occurred it said that the app tried to send a notifcation…
VeryPoliteNerd
  • 253
  • 2
  • 13
6
votes
1 answer

WKWebView and NSURLCache to serve local content

My app loads a very big webapp inside a UIWebView. I have written a NSURLCache extension "LocalCache". This LocalCache extension intercepts my webapp loading, and serves all requested files from a local app bundle that is encrypted. This logic is…
rupps
  • 9,712
  • 4
  • 55
  • 95
6
votes
3 answers

iOS 8 extension dependencies issues. Importing one project file to extension view controller

I am working on iOS 8 extension. I read many manuals and all of them just show how simple add extension to your app, and seems that's enough. But here are many pitfalls: After adding your extension you will need to import some of your classes to…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
6
votes
2 answers

iOS Share extension how to support *.wav files

As the title states, I want my extension to show up when the users share *.wav files I've come across the following apple…
LostBalloon
  • 1,608
  • 3
  • 15
  • 31
6
votes
2 answers

how to define UIFont as constant value in swift

I want to define a UIFont as constant value in swift so i can reuse it app to make it consistent. I have used this in Objective-C by #define HelveticaNeue [UIFont fontWithName:@"HelveticaNeue" size:13.0] I want this code in swift. How can i get…
PatientC
  • 273
  • 4
  • 9
6
votes
1 answer

UIAlertController's popover is deformed

I'm presenting a list of options to the user using an UIAlertController from a UIToolbar with a preferred style of action sheet. When presented, the popover's arrow is cut off and its corners are rounded with two different radii: The code I'm using…
Adrian
  • 1,842
  • 13
  • 25
6
votes
1 answer

How does UISearchController work?

How does UISearchController do everything it does? How does it transform the UISearchBar into a navigation-bar-like view? How does it put the UISearchBar into another view hierarchy and restore it later? How does it do all this using the…
fumoboy007
  • 5,345
  • 4
  • 32
  • 49
6
votes
2 answers

iOS - OpenURL from Keyboard extension on iOS 8.3 beta

On my project I used a WebView to open a Container App from Keyboard extension. It worked ok until I tried to run it on iOS 8.3 beta.. On this new iOS version it just do nothing. I tried to use NSExtensionContext and WKWebView - without any success…
6
votes
2 answers

What thread does the completionHandler of WKWebView's evaluateJavascript method run on?

I am trying to figure out if it is safe to manipulate UI objects in the completion handler of WKWebView's - evaluateJavaScript:completionHandler:. The docs do not seem to specify.
weiyin
  • 6,819
  • 4
  • 47
  • 58