Results 132 comments of Darren Jones

Hey 👋 I've fixed this for you today. Your solution was almost correct, however the `paymentData` wasn't `nil`, it had a payload but without the payment data. Adding `if (payment...

Perhaps we had differing data being returned. I've added that line now too.

Was just coming here to say the same. ``` - (void)dealloc { NSLog(@"%s", __PRETTY_FUNCTION__); } ``` This never logs. Any idea what is keeping a reference?

@springlo did you ever find what's holding onto this?

I've found a fix. At the end of the hideNotification method, add `[self performSelector:@selector(removeFromView) withObject:nil afterDelay:1.5];` then add a new method: ``` -(void)removeFromView { [_gravity removeItem:self]; [_collision removeItem:self]; [_itemBehavior removeItem:self];...

When I run `Make` it says this > Signing JailTest... > iPhone Developer: ambiguous (matches "iPhone Developer: Stexxx Mxxx (2VX8XXXXX)" and "iPhone Developer: Chaxxx Gxxx (Q5GSXXXX)" in /Users/dj/Library/Keychains/login.keychain) Is there...

I think i've managed to get a base64 encoded key from java now, however this code now pauses on line 108 - OSStatus status = SecItemAdd((__bridge CFDictionaryRef)publicKey, &persistKey); And when...

Ok, sorry about so many notes. It seems it's pausing with an Exception, as if I remove the exception breakpoint it runs just fine, however the encoded string is always...

Yes, I can get it working fine if I setup a new iOS project. I was originally using an OSX project. I wonder if it's an issue to do with...

I get a lot of error's installing protoc-gen-objc i'm assuming because I have proto 3. Is there a way to get it working, or should I attempt to downgrade to...