4 May 2018, 13:50

I got the ios-boiler-plate application to work, but now it doesn't anymore.

I use:
@IBAction func grabButton() {
print("Grabbing a flic..")
SCLFlicManager.shared()?.grabFlicFromFlicApp(withCallbackUrlScheme: "wios-boilerplate-swift")
}

to call the flic app, which opens up correctly.
But after selecting the button the flic app doesn't correctly call back to the boiler plate app anymore.
Thus
func flicManager(_ manager: SCLFlicManager, didGrab button: SCLFlicButton?, withError error: Error?) {
print("I grabbed the button")
if (error != nil) {
print("Error: (error!._domain) - (error!._code)")
return
}
// TODO: Here would be a good place to set the Flic latency in case you need lower latency
// Consider choosing your prefered triggerBehavior as well (Click / hold is default)
}

is not called anymore.

I have no clue of how to track down this error. But I suppose I'm not the first one experiencing this error.

If anyone has a clue I would greatly appreciate it.

Thanks,

//Niklas