26 lines
623 B
Objective-C
Executable File
26 lines
623 B
Objective-C
Executable File
//
|
|
// TUISelectAvatarController.h
|
|
// TUIKitDemo
|
|
//
|
|
// Created by wyl on 2022/6/27.
|
|
// Copyright © 2022 Tencent. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
typedef NS_ENUM(NSUInteger, TUISelectAvatarType) {
|
|
TUISelectAvatarTypeUserAvatar,
|
|
TUISelectAvatarTypeGroupAvatar,
|
|
TUISelectAvatarTypeCover,
|
|
};
|
|
@interface TUISelectAvatarController : UIViewController
|
|
@property (nonatomic, copy) void (^selectCallBack)(NSString *urlStr);
|
|
@property (nonatomic, assign) TUISelectAvatarType selectAvatarType;
|
|
@property (nonatomic, copy) NSString *profilFaceURL;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|