Hi, I've got a very strange issue that I can't resolve: in one piece of code only (the one I'm working on, which worked fine previously), any varible that's initialized at the top of my InterfaceController.swift (Apple Watch Extension) file throws a "EXC_BAD_ACCESS (Code = 2....)" error. This started with the following line, but even if I take it out, any variable that is initialized at the start throws the same error:
var locManager = CLLocationManager()
As I said, this used to work fine, and I've even tested other apps that I'm working on, and they all work fine.
I've tried deleting the app in the simulator, and cleaning the build folder, but I get the same error--and like I said if I remove that line from my code, any other variable that is initialized throws the same error. Hopefully someone has seen this before and can help!