mirror of
https://github.com/DKJone/DKWechatHelper.git
synced 2026-09-12 00:23:35 +08:00
23 lines
1.2 KiB
Objective-C
23 lines
1.2 KiB
Objective-C
// ViewController.h
|
|
//
|
|
// Created by ___ORGANIZATIONNAME___ on 2021/1/18
|
|
//
|
|
//
|
|
//
|
|
// ██████╗ ██╗ ██╗ ██╗ ██████╗ ███╗ ██╗███████╗
|
|
// ██╔══██╗██║ ██╔╝ ██║██╔═══██╗████╗ ██║██╔════╝
|
|
// ██║ ██║█████╔╝ ██║██║ ██║██╔██╗ ██║█████╗
|
|
// ██║ ██║██╔═██╗ ██ ██║██║ ██║██║╚██╗██║██╔══╝
|
|
// ██████╔╝██║ ██╗╚█████╔╝╚██████╔╝██║ ╚████║███████╗
|
|
// ╚═════╝ ╚═╝ ╚═╝ ╚════╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "DKLaunchHelper.h"
|
|
@interface DKLaunchViewController : UIViewController
|
|
/// 设置类型 0 :启动页,1:设置启动页,2:设置聊天背景
|
|
@property (nonatomic,assign)int setType;
|
|
@end
|
|
|