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
0
votes
0 answers

Terminating app due to uncaught exception NSInvalidArgumentException in iOS 8.1

I am facing the issue when I am launching my sample app in iOS simulator and whenever I debug , it takes me to machine code, so hard to find what exactly is causing nil modal view controller *** Terminating app due to uncaught exception…
yogsma
  • 10,142
  • 31
  • 97
  • 154
0
votes
1 answer

When CLLocationManagerDelegate methods are called?

I am using iOS8 and trying to track location(latitude and longitude) values. I needed clarification about when CLLocationManagerDelegate methods are called. 1)Will it be called only when app is in foreground along with locationchange OR 2)Will it be…
user2533604
  • 655
  • 1
  • 11
  • 28
0
votes
1 answer

How can I save several data in one context in CoreData?

I have got a problem with saving several data from an array into one context. I try the normal way for me to doing that but if I try to print the data there is only shown [, ] in the console! I don't get it? Could you help me? Here is my…
Tom Kuschka
  • 463
  • 1
  • 8
  • 17
0
votes
1 answer

Finding video type from NSData

I am loading an video from a URL provided by a third-party. There is no file extension (or filename for that matter) on the URL (as it is an obscured URL). I can take the data from this (in the form of NSData) and load it into a video player and…
Developer007
  • 437
  • 3
  • 12
0
votes
1 answer

Swift iOS8.1 selector does not have a member named 'convertFromStringLiteral'

I used an iBeacon Library in Swift, // Listening Notifications func registerNotifications() { NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector.convertFromStringLiteral("handleNotification:"), name:…
Alex Wu
  • 23
  • 3
0
votes
2 answers

comparing NSString vs NSString * const (on iOS8.1) fails

I want to log some errors generated when using a WebView. For instance: - (void)webView:(UIWebView *)aWebView didFailLoadWithError:(NSError *)error{ NSString * domain; domain = [error domain]; NSLog(@"%@",error); if ( domain ==…
subzero
  • 3,420
  • 5
  • 31
  • 40
0
votes
0 answers

mvvmcross example N-23 crashing

My project is crashing very consistently on the device with (ios 8.1) when I do the following: have MvxDialogViewController with 2 elements InputElement and any element that requires selection on the next screen (as an example DateElement) Root…
h82w8
  • 5
  • 6
0
votes
3 answers

Not getting latitude and longitude values in ios8

I made necessary changes for my app according to iOS8.1 SDK to track location. I am using below piece of code to get latitude and longitude.Eventhough i am not getting latitude and longitude values. Should i need to do any changes other than this to…
Avinash
  • 823
  • 1
  • 7
  • 18
0
votes
2 answers

NSDirectoryEnumerator ignores 1 file in the enumeration?

I'm clearing my app's Documents folder using a NSDirectoryEnumerator. It works, mostly, except that for some reason that I cannot fathom, it leaves 1 file behind. Here's my code: NSDirectoryEnumerator * enumerator = [fileMan…
Dhiraj Gupta
  • 9,704
  • 8
  • 49
  • 54
0
votes
2 answers

NSNetService Resolve ipv6 that can not make an http request on it

Recently, i was facing a problem while resolving NSNetService. I was published an NSNetService with type _http._tcp., to be just like an http server. Other wise, on another device, i was start searching for this service, and it will find it. After…
Suliman
  • 25
  • 5
0
votes
1 answer

Chinese handwriting input method crash on iOS8.1

If user is using Chinese handwriting input method. After he typed anything and select candidates my app crashes. This only happens on iOS8.1 and only with the handwriting input method on my app. Other apps will not crash. The crash log gives the…
wqyfavor
  • 519
  • 1
  • 4
  • 14
0
votes
1 answer

BLE background mode in iOS 8.1

I've been working on application that receives health data trough BLE. It's been working correctly in background and sending the notification when in specific conditions. Problems, unfortunately, occured when I installed the iOS 8.1. It doesn't…
izik461
  • 1,131
  • 12
  • 32
0
votes
1 answer

how to retrieve data from sqlite using WHERE clause iOS 8

I'm very new to IOS programming and I'm having an issue retrieving some data from my database. It's a simple login page that I have done on my application. I need to check if the username exists and It seems to fail at the following line…
Mr.Noob
  • 1,005
  • 3
  • 24
  • 58
0
votes
2 answers

sencha touch ios8.1 iframe can't scrolling

1.sencha touch 2.3.1 2.I Used iframe it works well on IOS7.x 3.When Upgrade to IOS8.1,Iframe can't scrolling 4.IOS8.1 in safari works well,but when send to home screen,and open it it can't work. WHY?is a bug? my iframe code like this:
jackchain
  • 1
  • 1
0
votes
1 answer

CoreData PersistentStorage failed to create file

I have a problem on iOS 8.1 with CoreData. On my device I always get this error while the code runs fine on every simulator: Error Domain=NSCocoaErrorDomain Code=512 "The operation couldn’t be completed. (Cocoa error 512.)" UserInfo=0x15e62bd0…
nurbs999
  • 87
  • 10