I have got some problems on my app right now. I would like to create a CIContext with :
CIContext *myContext = [CIContext contextWithOptions:nil];
But when starting the app, this line return the following message in console : "BSXPCMessage received error for message: Connection interrupted"
This message come when I launch the app on iOS 8 (simulator or device), but not with an iOS 7 simulator (I don't have a device to try). I tried many things to solve this like try it in another projet, on another Mac, call this method on another file... I think it come from iOS 8.
It don't look to change my image processing (what I use the context to), but if there is a warning, there is a problem to solve.
Thank for your help :)