TencentNavKit
TNKBaseNavViewDelegate.h
Go to the documentation of this file.
1//
2// TNKBaseNavViewDelegate.h
3// TencentNavKit
4//
5// Created by mol on 2022/12/28.
6// Copyright © 2022 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <TencentNavKit/TNKNavViewCommonObj.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
14@class TNKBaseNavView;
15
16
18@protocol TNKBaseNavViewDelegate <NSObject>
19
20@optional
21
28- (void)navView:(TNKBaseNavView *)navView didChangeUIMode:(TNKNavUIMode)mode followed:(BOOL)followed;
29
35- (void)navView:(TNKBaseNavView *)navView didChangeDayNightStatus:(TNKNavDayNightStatus)status;
36
41- (void)navViewCloseButtonClicked:(TNKBaseNavView *)navView;
42
43@end
44
45NS_ASSUME_NONNULL_END
enum _TNKNavUIMode TNKNavUIMode
导航地图的导航模式
enum _TNKNavDayNightStatus TNKNavDayNightStatus
导航地图所处的日夜间状态
导航地图基础类
Definition: TNKBaseNavView.h:25
导航地图回调
Definition: TNKBaseNavViewDelegate.h:18