Chris Felix Aardal

Results 8 comments of Chris Felix Aardal

Hi! Can someone please have a look and merge this? I don't see any reasons why new imports should be added to the top

+1. An example on how to show a local push notification in AppDelegate.m would also be much appreciated 💯

Does anyone of you guys have some sample code on how you handle background scans: ` if ([launchOptions objectForKey:@"UIApplicationLaunchOptionsLocationKey"]) { NSLog(@"DID RECIEVE REGION"); } ` Like local notifications or just...

If you want to pop a local notification you can do this. ```obj-c if ([launchOptions objectForKey:@"UIApplicationLaunchOptionsLocationKey"]) { NSLog(@"DID RECIEVE REGION"); UILocalNotification *notification = [[UILocalNotification alloc] init]; notification.alertBody = @"SAH DUDE?!";...

I've kinda solved this issue(I think) You'r AppDelegate.m needs a CLLocationManagerDelegate: ```objc @interface AppDelegate() @property (strong, nonatomic) CLLocationManager *locationManager; @end ``` Then in application didFinishLaunchingWithOptions method you need to do...

@Clowning @r-bansal Look at my last comment

This is awesome @egegunes. I'd love to contribute but my knowledge in objc is quite limited. Could you have a look at this discussion and help me assess if this...

Tested the Discord fork and it worked for us 🎊