mirror of
https://github.com/DKJone/DKWechatHelper.git
synced 2025-05-23 18:56:11 +08:00

[v1.0.5] what's new * 新增好友关系检测 * 新增自动收取个人红包 * 修复集赞助手自定义评论时可能会发生闪退的BUG * 支持7.0.15 * 更新越狱包7.0.15 * 更新已注入助手的7.0.15未签名包 * 更新越狱源安装包
26 lines
1.3 KiB
Objective-C
26 lines
1.3 KiB
Objective-C
// DKCleanFriendsController.h
|
|
// dkhelperDylib
|
|
// Created by DKJone on 2020/9/25
|
|
// Copyright © 2020 DKJone. All rights reserved.
|
|
//
|
|
//
|
|
// ██████╗ ██╗ ██╗ ██╗ ██████╗ ███╗ ██╗███████╗
|
|
// ██╔══██╗██║ ██╔╝ ██║██╔═══██╗████╗ ██║██╔════╝
|
|
// ██║ ██║█████╔╝ ██║██║ ██║██╔██╗ ██║█████╗
|
|
// ██║ ██║██╔═██╗ ██ ██║██║ ██║██║╚██╗██║██╔══╝
|
|
// ██████╔╝██║ ██╗╚█████╔╝╚██████╔╝██║ ╚████║███████╗
|
|
// ╚═════╝ ╚═╝ ╚═╝ ╚════╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "DKHelper.h"
|
|
|
|
@interface DKCleanFriendsController : UIViewController
|
|
- (instancetype)initWithContactList:(NSArray *)contactList contactDesc:(NSString *)contactDesc;
|
|
|
|
@end
|
|
|
|
|
|
|