21 lines
411 B
Objective-C
21 lines
411 B
Objective-C
//
|
|
// AppDelegate+CYLTabBar.h
|
|
// NormalProject
|
|
//
|
|
// Created by PangChong on 2020/12/14.
|
|
// Copyright © 2020 WYL. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
@class CYLTabBarController;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
/// 这是 AppDelegate 的分类,用于配置 CYLTabBarController
|
|
@interface AppDelegate (CYLTabBar)
|
|
|
|
/// 配置主窗口
|
|
- (void)configureForTabBarController;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|