| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- //
- // TCommonCell.h
- // TXIMSDK_TUIKit_iOS
- //
- // Created by annidyfeng on 2019/5/6.
- // Copyright © 2023 Tencent. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "TUIDarkModel.h"
- @import ImSDK_Plus;
- NS_ASSUME_NONNULL_BEGIN
- /////////////////////////////////////////////////////////////////////////////////
- //
- // TUIUserFullInfo
- //
- /////////////////////////////////////////////////////////////////////////////////
- @interface V2TIMUserFullInfo (TUIUserFullInfo)
- - (NSString *)showName;
- - (NSString *)showGender;
- - (NSString *)showSignature;
- - (NSString *)showAllowType;
- @end
- /////////////////////////////////////////////////////////////////////////////////
- //
- // TUIUserModel
- //
- /////////////////////////////////////////////////////////////////////////////////
- @interface TUIUserModel : NSObject <NSCopying>
- @property(nonatomic, copy) NSString *userId;
- @property(nonatomic, copy) NSString *name;
- @property(nonatomic, copy) NSString *avatar;
- @end
- /////////////////////////////////////////////////////////////////////////////////
- //
- // TUIScrollView
- //
- /////////////////////////////////////////////////////////////////////////////////
- @interface TUIScrollView : UIScrollView
- @property(strong, nonatomic) UIImageView *imageView;
- @end
- /////////////////////////////////////////////////////////////////////////////////
- //
- // TUIGroupAvatar
- //
- /////////////////////////////////////////////////////////////////////////////////
- @interface TUIGroupAvatar : NSObject
- /**
- *
- * Obtain the latest group avatar in real time according to the group id. After the avatar is updated, it will be cached locally. This interface will request
- * the network This interface will not use the cache. If you need to read the cache, please use getCacheGroupAvatar:imageCallback or getCacheAvatarForGroup:
- * number:
- */
- + (void)fetchGroupAvatars:(NSString *)groupID placeholder:(UIImage *)placeholder callback:(void (^)(BOOL success, UIImage *image, NSString *groupID))callback;
- /**
- * Create a group avatar based on the given url array
- */
- + (void)createGroupAvatar:(NSArray *)group finished:(void (^)(UIImage *groupAvatar))finished;
- /**
- * Cache avatars based on group ID and number of group members
- */
- + (void)cacheGroupAvatar:(UIImage *)avatar number:(UInt32)memberNum groupID:(NSString *)groupID;
- /**
- * Get the cached avatar asynchronously, this interface will request the interface to get the current number of group members, and return the avatar
- * corresponding to the local cache
- */
- + (void)getCacheGroupAvatar:(NSString *)groupID callback:(void (^)(UIImage *, NSString *groupID))imageCallBack;
- /**
- * Get the cached avatar synchronously, this interface does not request the network
- */
- + (UIImage *)getCacheAvatarForGroup:(NSString *)groupId number:(UInt32)memberNum;
- /**
- *
- * Clear the avatar cache of the specified group
- */
- + (void)asyncClearCacheAvatarForGroup:(NSString *)groupID;
- @end
- /////////////////////////////////////////////////////////////////////////////////
- //
- // TUIImageCache
- //
- /////////////////////////////////////////////////////////////////////////////////
- @interface TUIImageCache : NSObject
- + (instancetype)sharedInstance;
- - (void)addResourceToCache:(NSString *)path;
- - (UIImage *)getResourceFromCache:(NSString *)path;
- - (void)addFaceToCache:(NSString *)path;
- - (UIImage *)getFaceFromCache:(NSString *)path;
- @end
- /////////////////////////////////////////////////////////////////////////////////
- //
- // TUINavigationController
- //
- /////////////////////////////////////////////////////////////////////////////////
- @class TUINavigationController;
- @protocol TUINavigationControllerDelegate <NSObject>
- @optional
- - (void)navigationControllerDidClickLeftButton:(TUINavigationController *)controller;
- - (void)navigationControllerDidSideSlideReturn:(TUINavigationController *)controller fromViewController:(UIViewController *)fromViewController;
- @end
- @interface TUINavigationController : UINavigationController <UINavigationControllerDelegate, UIGestureRecognizerDelegate>
- @property(nonatomic, weak) UIViewController *currentShowVC;
- @property(nonatomic, weak) id<TUINavigationControllerDelegate> uiNaviDelegate;
- @property(nonatomic, strong) UIImage *navigationItemBackArrowImage;
- @property(nonatomic, strong) UIColor *navigationBackColor;
- @end
- @interface UIAlertController (TUITheme)
- - (void)tuitheme_addAction:(UIAlertAction *)action;
- @end
- typedef void (^TUIValueCallbck)(NSDictionary *param);
- typedef void (^TUINonValueCallbck)(void);
- typedef NSString *TUIExtVauleType;
- @interface NSObject (TUIExtValue)
- @property(nonatomic, copy) TUIValueCallbck tui_valueCallback;
- @property(nonatomic, copy) TUINonValueCallbck tui_nonValueCallback;
- @property(nonatomic, strong) id tui_extValueObj;
- @end
- NS_ASSUME_NONNULL_END
|