You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
352 B
20 lines
352 B
// |
|
// UIImageView+MultiAvatar.h |
|
// ZtCampus |
|
// |
|
// Created by xx on 2019/10/24. |
|
// Copyright © 2019 hongtu. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
#define kWidthScale ([[UIScreen mainScreen] bounds].size.width/1080) |
|
|
|
|
|
@interface UIImageView (MultiAvatar) |
|
|
|
//设置群聊头像 |
|
- (void)ht_setImageWithURLStrArr:(NSArray *)arr; |
|
|
|
@end |
|
|
|
|