In attempting to create a Launch Helper as per the Apple docs (and tutorial-ized), I seem to be hitting a hiccup caused by porting the Objective-C code into Swift... who\'s
Right, I had a similar issue trying to get the BOOL return of an objective-C method in Swift.
Obj-C:
- (BOOL)isLogging { return isLogging; }
Swift:
if (self.isLogging().boolValue) { ... }
this was the way that I got rid of the error.