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
2 answers

iPhone iOS 8.2 with Xcode 6.1.1

I just updated my phone to newest iOS version (8.2) and now I have in Xcode (6.1.1) my device under Ineligible devices. I don't use Xcode beta version but I guess I should started. I just update Xcode when Store notify me but I think I should…
Libor Zapletal
  • 13,752
  • 20
  • 95
  • 182
6
votes
5 answers

dyld`gdb_image_notifier exception when i run my application in device

When try to load my application on device sometimes i got following exception dyld`gdb_image_notifier:0x2beca0cc: bx lr but after stop and run again everything works fine, can anyone tell me why this occurs
Vaisakh
  • 2,919
  • 4
  • 26
  • 44
6
votes
1 answer

iOS8 Swift UISearchController hides navigationbar

I implemented a search function for an UITableViewController like this: self.resultSearchController = ({ let controller = UISearchController(searchResultsController: nil) controller.searchResultsUpdater = self …
0x52
  • 883
  • 1
  • 11
  • 17
6
votes
1 answer

Download files from UIDocumentPicker and wait until download has finished

I'm trying to download a file from the -documentPicker:didPickDocumentAtURL: method. I've tried to get the data of the file using NSData *data = [NSData dataWithContentsOfURL:url]; but it didn't work how I expected, because the UIDocumentPicker…
FTFT1234
  • 435
  • 8
  • 17
6
votes
3 answers

UIWindow orientation issues (two UIWindows and landscape mode)

I know that this looks like a huge question but it's not so don' be afraid to read it. Mostly it's me explaining how stuff works. I have two UIWindows in my app. The first one is the main window which gets created by the app by default. The second…
Majster
  • 3,611
  • 5
  • 38
  • 60
6
votes
0 answers

window.focus() or window.blur doesn't work in modern browsers?

A project I'm working on requires that we create a pop up window and then change focus back to the parent window. Many solutions that seem to have worked in the past seem to not work at all in many new versions of Chrome, Firefox, and Safari and IOS…
6
votes
3 answers

How do I change height of iOS custom keyboard?

I've been working on an iOS custom keyboard (in an .xib file), but I haven't been able to change the height within storyboard. Is there a way to change the height of the keyboard within storyboard or do I have to find a way to do it…
smecperson
  • 301
  • 1
  • 4
  • 15
6
votes
2 answers

iOS 8 bug with dismissViewControllerAnimated: completion: animation?

iOS documentation for dismissViewControllerAnimated:completion: states: If you present several view controllers in succession, thus building a stack of presented view controllers, calling this method on a view controller lower in the stack…
James
  • 762
  • 8
  • 22
6
votes
3 answers

How do I make a UITableViewController conform to protocol UISearchResultsUpdating?

I have a UITableViewController class in which I am implementing a UISearchController. I've added the following delegates: class EmployeesTableView: UITableViewController, NSFetchedResultsControllerDelegate,UISearchResultsUpdating{ I'm importing…
krisacorn
  • 831
  • 2
  • 13
  • 23
6
votes
1 answer

How to List discoverable Bluetooth devices and already paired devices in iOS, which method to use in swift?

I would like to include Bluetooth feature on my app using swift. I want to list all nearby/discoverable peripheral devices including those devices are already paired Which method i should use for listing the paired devices. Im using CoreBlutooth…
SARATH SASI
  • 1,395
  • 1
  • 15
  • 39
6
votes
1 answer

iOS 8 -- Apply blur to navigation bar AND status bar

I am attempting to add a blur effect to a navigation bar and a status bar. My problem is that the blur goes great onto the navigation bar, but the status bar does not get blurred. My question is: how can I extend the bounds to encompass the status…
Chris Holloway
  • 247
  • 3
  • 10
6
votes
3 answers

how to set the maximum and minimum image of MPVolumeView correctly

i am trying to set the maximum and minimum image of MPVolumeView but i can't get it working here is the code VolumeView.setVolumeThumbImage(UIImage(named: "VolumeSlider"), forState:…
Amr Mohamed
  • 2,290
  • 4
  • 20
  • 39
6
votes
4 answers

Unwind segue doesn't dismiss adaptive popover presentation when not modal

Update for iOS 9 beta: Apple may have fixed this for iOS 9. If you work(ed) around this issue for iOS 8, make sure it also works correctly on iOS 9. In storyboard, I've created a popover presentation segue to present a navigation and view…
user4151918
6
votes
0 answers

Choppy Scrolling Animation for UITableView in iOS8 Using Dynamic Cell Height

I'm working on developing a newsfeed where most cells have different heights from each other. So I'm using Apple's new built-in system to calculate the height of the rows dynamically in iOS8. The problem happens when I have to load a new page. When…
KhanFu
  • 81
  • 5
6
votes
1 answer

Detect iPhone Volume Button Hold? (iOS 8)

Is there a way to detect if any of the volume buttons on the iPhone are being held? I know you can detect if one has been pressed, but I specifically need to know if one is being held down.
Philip Hardy
  • 196
  • 2
  • 9