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
70
votes
5 answers

How to get device console in Xcode6?

I am exploring iOS8 beta. I couldn't find the device console logs in "Window->Devices->MyiPad". Can someone tell me how I can get the console logs?
Adireddi
  • 701
  • 1
  • 5
  • 5
69
votes
6 answers

Disable iOS8 Quicktype Keyboard programmatically on UITextView

I'm trying to update an app for iOS8, which has a chat interface, but the new Quicktype keyboard hides the text view, so I would like to turn it off programmatically or in interface builder. Is it possible somehow or only the users can turn it off…
rihekopo
  • 3,241
  • 4
  • 34
  • 63
69
votes
15 answers

Xcode 6 and Embedded Frameworks only supported in iOS8

When using an embedded framework (dyld) in Xcode 6.0.1 with deployment target less that iOS 8 I get: Build is successful Runtime library loading error Error: dyld: Library not loaded: @rpath/ObjectiveLyricsTouch2.framework/ObjectiveLyricsTouch2 …
loretoparisi
  • 15,724
  • 11
  • 102
  • 146
67
votes
17 answers

Setting device orientation in Swift iOS

I am working on a swift app for iPhone. There is a modal view in my application that I want only to be in portrait view. My question is, how do I programmatically force the phone to not allow rotation? In other words, I am looking for code that will…
rocket101
  • 7,369
  • 11
  • 45
  • 64
67
votes
12 answers

Error when adding input view to textfield iOS 8

I'm having an issue when I add a custom input view to my app on iOS 8. This was working perfectly fine on iOS 7 but when switching to iOS 8 everything fails. This is the stack trace: 2014-06-03 21:23:54.237 MyApp[1910:47245] *** Terminating app due…
Milo
  • 5,041
  • 7
  • 33
  • 59
66
votes
9 answers

Xcode 6.4 showing duplicate 'Simulators' with Unique Id

Till yesterday, everything was normal with Xcode. It was showing simulators as : But today, when I opened it, simulator list changed to : Every simulator can be seen twice, name followed by a unique id. I have also observed that same named…
itsji10dra
  • 4,603
  • 3
  • 39
  • 59
66
votes
10 answers

Unwind Segue not working in iOS 8

I have an app, that works fine under iOS 7, but when built for iOS 8 the unwind segues are not working. I created a new project and added a modal (navigationcontroller with tableviewcontroller)and tried to use an unwind modal. Unfortunately it…
viirus
  • 1,037
  • 1
  • 11
  • 21
66
votes
9 answers

Unable to determine simulator device to boot. - Xcode

I just downloaded Xcode 6 & played with it a bit. After switching back to previous version of Xcode and running in simulator, I keep getting this error. Unable to determine simulator device to boot. How do we resolve this? Thanks in advance.
footyapps27
  • 3,982
  • 2
  • 25
  • 42
65
votes
17 answers

Code sign error : bundle format unrecognized, invalid, or unsuitable

Im working on an iOS app, Swift language, iOS8, Xcode 6.1. It was running fine on the iPad. Then I added a "Resource" folder reference to the project, after which I am getting the Code sign error. The Resource folder contains some HTML files. I am…
Adithya
  • 4,545
  • 3
  • 25
  • 28
65
votes
24 answers

Xcode 6.0.1 Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 1

I am getting this error on archive: Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 1 How to solve it? Please see the screenshot.
R_Developer
  • 864
  • 1
  • 7
  • 10
65
votes
5 answers

iOS 8 UIPageViewController Applying Constraints After Transitions

My app has a multi-pane tutorial-style view that users swipe through to learn about the app. This is implemented very much as described in this tutorial. Having implemented it for both iOS 7 and 8, I'm comparing how they work, and finding issues…
Aaron Vegh
  • 5,217
  • 7
  • 48
  • 75
65
votes
5 answers

iOS 8 - How to hide suggestion list above keyboard?

Is there any way to hide suggestions list above keyboard? I couldn't find any solution in documentation.
Khawar
  • 9,151
  • 9
  • 46
  • 67
62
votes
17 answers

Change the sections header background color in UITableView using an array of headers

I have a array of headers that I use let sectionHeaderTitleArray = ["test1","test2","test3] and they are showed using func tableView[tableView: UITableView, titleForHeaderInSection section: Int) -> String? { return…
Jp4Real
  • 1,982
  • 4
  • 18
  • 33
62
votes
21 answers

Disable magnification gesture in WKWebView

I'm looking for a way to disable the "pinch to zoom" magnification gesture on the iOS implementation of WKWebView. There is a magnification BOOL property available for OS X but it doesn't seem to be available on iOS. WKWebView.h #if…
Kevin
  • 3,111
  • 1
  • 19
  • 26
61
votes
5 answers

Multiple UILabels inside a self sizing UITableViewCell

In this iOS 8 app I'm creating, I have a tableview and I need them to be self resizing. I implemented it using Auto Layout and it works. Almost. Here's how it looks now. There are 3 labels inside a cell. Main label which has the lorem ipsum text.…
Isuru
  • 30,617
  • 60
  • 187
  • 303