NativeLocation.h 376 B

123456789101112131415161718
  1. //
  2. // NativeLocation.h
  3. // Immersal SDK
  4. //
  5. // Created by Mikko on 29/05/2020.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <CoreLocation/CoreLocation.h>
  10. #import <UIKit/UIKit.h>
  11. @interface NativeLocation : NSObject <CLLocationManagerDelegate>
  12. - (NativeLocation *)init;
  13. - (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations;
  14. @end