Questions tagged [ios8.1]

Refers to the first minor version of Apple's iOS 8 operating system used on the iPhone, iPad, iPod, and upcoming Apple Watch devices.

iOS 8.1 was released on the 20th October 2014.

Please see the documentation for the API changes between iOS 8.0 and iOS 8.1.

392 questions
4
votes
1 answer

React Native iOS 8.1 app crashes when accessing a new view - ONLY when NOT using debugger

I have a react-native app running on iOS. On iOS 9.2, the app runs perfectly fine, both when using the Chrome debugger and not using it. However, in iOS 8.1, the app will load, and lists can be swiped, data is loaded from the server, etc. This is…
Josh Baker
  • 598
  • 7
  • 16
4
votes
2 answers

Core Data Migration issue in IOS 8 only , not IOS 9

I am facing weird IOS app issue for the Core Data migration. Below are the mentioned Logs for your This issue only happens when an IOS8 Device migrates app from lower version to newer version.Note I am already passing this test in IOS9 using the…
codelover
  • 1,113
  • 10
  • 28
4
votes
1 answer

number of unread messages from xmpp ios

I am developing a chat App using XMPPFrameWork. Everything is working perfectly but I'm stuck at obtaining number of unread messages. I've to show on tableView the number of messages that are not opened yet. How should I proceed , any idea? I…
Sushil Sharma
  • 2,321
  • 3
  • 29
  • 49
4
votes
1 answer

Why can't NSFIleManager -fileExistsAtPath not find an existing file when path is correct?

I know that the iOS Simulator is found in a different directory each time it is run; with that in mind, I have this code which gives me the directory of the Core Data sqlite files: // find current directory for saori.sqlite NSFileManager…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
4
votes
1 answer

Device Token not generating in ios 8.1

I have implemented push notification generation using the following methods. if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) { [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings…
user4501460
4
votes
0 answers

iOS 8.1.2 IPA Unsigned IPA Creation for Jailbroken device?

I need to create a IPA with out Developer account and Provisional profile. I have done this before in Xcode 5 by made a little change from Xcode by using this instruction GoTo /Applications then right click Xcode.app and click "Show Package…
Mohanraj S K
  • 657
  • 4
  • 16
4
votes
2 answers

Changing Background on orientation change fails

I have two images bg-land and bg-port for different orientation. I wanna change the image on chnaging orientation. But, the image does not change. When I load the Simulator in LandScape, bg-land works perfect but does not work with Rotation. Code: …
tika
  • 7,135
  • 3
  • 51
  • 82
4
votes
0 answers

Is there a way to stop iOS 8.1 Safari hiding fixed elements on checkbox and radio input focus?

Mobile Safari 'unfixes' fixed elements on input focus where a keyboard or a list select appears on the screen. This makes sense as screen space is limited. On iOS 6 and 7, Safari would do nothing on checkboxes and radio buttons, which made sense…
ino
  • 273
  • 2
  • 13
4
votes
1 answer

IndexedDB with iOS 8/ Safari

We have a testcase to test indexeddb with different browsers and OS. It is just simple test: open database, add some data, retrieve some data That is it. It is working perfectly in Chrome (39), Firefox (new versions), MacBook Pro with OSX…
amol01
  • 1,823
  • 4
  • 21
  • 35
4
votes
0 answers

How to get format name from AVCaptureDeviceFormat in swift?

Here my code in objective-c for (AVCaptureDeviceFormat *format in [device formats]) { CFStringRef formatName = CMFormatDescriptionGetExtension([format formatDescription], kCMFormatDescriptionExtension_FormatName); } I need this code in…
iosLearner
  • 1,312
  • 1
  • 16
  • 30
4
votes
3 answers

Headphones plugin/out detection in Swift

im working on an iphone app for iOS 8.1 that works with core audio to generate frequencies and adjust intensities. In the view controller that i generate the frequencies i need to control if the headphones are plugged out in some moment, i'm already…
DrCachetes
  • 954
  • 1
  • 9
  • 30
4
votes
0 answers

iOS 8 - Remove Previous/Next/Done UIKeyboard Toolbar inside a UIWebView (works iOS 7, not iOS 8)

https://stackoverflow.com/a/22468178/3138300 This method works perfect for iOS 7, but it does not work on iOS 8 - the bar remains. Does anyone know how I can update the code for iOS 8?
daemon
  • 251
  • 3
  • 21
4
votes
2 answers

tableView:didEndEditingRowAtIndexPath: delegate method called twice

I would like to know when the user applies swipe actions on cells of a UITableView. As per the doc, the UITableViewDelegate methods should I use are the following: - (void)tableView:(UITableView *)tableView…
Lorenzo B
  • 33,216
  • 24
  • 116
  • 190
4
votes
2 answers

PHAsset fetchAssetsWithMediaType:PHAssetMediaTypeVideo returns no videos

Edited removed version from title, but this started with iOS 8.1 I have an app that I've built that will play videos from the users Photos.app. When I install the application on an 8.0.2 device I get back a list of videos from the [PHAsset…
Rob Booth
  • 1,792
  • 1
  • 11
  • 22
4
votes
1 answer

What's causing the massive changes in autorotation in 8.1 compared to 8.0.2?

I'm coding a video processing app and was just about to submit it to the app store when ios 8.1 came out. I updated my iPhone as well as XCode and all hell broke loose. In my simple single viewcontroller interface nothing is rotating anymore except…
tolgraven
  • 528
  • 5
  • 11