25 lines
532 B
Objective-C
25 lines
532 B
Objective-C
//
|
|
// ABaseViewController.h
|
|
// ANavDemo
|
|
//
|
|
// Created by admin on 2026/2/5.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <Masonry/Masonry.h>
|
|
#import "AMapNavCommonUtil.h"
|
|
|
|
#define kRoutePlanBarHeight (self.navigationController.navigationBar.frame.size.height + UIApplication.sharedApplication.statusBarFrame.size.height + 0)
|
|
|
|
#define kRoutePlanStatusBarHeight (UIApplication.sharedApplication.statusBarFrame.size.height + 0)
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ABaseViewController : UIViewController
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|