1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // JXChatGuanZhuCell.h
- // shiku_im
- //
- // Created by 123 on 2020/5/22.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JXChatGuanZhuCell : UITableViewCell
- @property (nonatomic,strong) memberData *model;
- @property (nonatomic,weak) UIButton *selectBtn;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic,weak) UIImageView *headIMG;
- @property (nonatomic,copy) NSString *strURL;
- - (void)createHeadIMG:(memberData *)menberModel index:(NSIndexPath *)indexPath dictM:(NSMutableArray *)dict attionUserId:(NSMutableArray *)userIdArr;
- @end
- NS_ASSUME_NONNULL_END
- /**
-
-
-
- return;
- [_dataArrUserIdIndex addObject:dictM];
- [_dataArrUserIdIndex enumerateObjectsUsingBlock:^(NSDictionary * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
-
-
- if ([_dataArrUserId containsObject:obj[@"userId"]]) {
-
- [_dataArrUserId removeObject:obj[@"userId"]];
-
- NSDictionary *dictM=@{@"userId": userID ,@"indexPath":[NSString stringWithFormat:@"%@",indexPath]};
- [_dataArrUserIdIndex removeObject:dictM];
-
- }else{
- [_dataArrUserId addObject:obj[@"userId"]];
- }
-
- }];
- */
|