Class NCZoneListener - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki

NCZoneListener provides a callback to be invoked when NCZoneManager detects entering/leaving zone events. The callback is invoked in the UI thread.

Referenced from: NCZoneManager, NCZone.

@protocol NCZoneListener

- (void)onEnterZone:(nullable NCZone *)zone;

- (void)onLeaveZone:(nullable NCZone *)zone;

@end