18 lines
265 B
Objective-C
18 lines
265 B
Objective-C
//
|
|
// AppDelegate+ThirdConfig.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/13.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface AppDelegate (ThirdConfig)
|
|
/// 初始化一些第三方配置
|
|
- (void)initThirdConfig;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|