123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717 |
- //
- // ContactListViewController.m
- // WFChat UIKit
- //
- // Created by WF Chat on 2017/10/7.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCUContactListViewController.h"
- #import <WFChatClient/WFCChatClient.h>
- #import "SDWebImage.h"
- #import "WFCUMessageListViewController.h"
- #import "WFCUContactSelectTableViewCell.h"
- #import "WFCUContactTableViewCell.h"
- #import "pinyin.h"
- #import "WFCUFavGroupTableViewController.h"
- #import "WFCUFriendRequestViewController.h"
- #import "UITabBar+badge.h"
- #import "WFCUNewFriendTableViewCell.h"
- #import "WFCUAddFriendViewController.h"
- #import "MBProgressHUD.h"
- #import "WFCUFavChannelTableViewController.h"
- @interface WFCUContactListViewController () <UITableViewDataSource, UISearchControllerDelegate, UITableViewDelegate, UITableViewDataSource, UISearchResultsUpdating>
- @property (nonatomic, strong)UITableView *tableView;
- @property (nonatomic, strong)NSMutableArray<WFCCUserInfo *> *dataArray;
- @property (nonatomic, strong)NSMutableArray<NSString *> *selectedContacts;
- @property (nonatomic, strong) NSMutableArray<WFCCUserInfo *> *searchList;
- @property (nonatomic, strong) UISearchController *searchController;
- @property(nonatomic, strong) NSMutableDictionary *resultDic;
- @property(nonatomic, strong) NSDictionary *allFriendSectionDic;
- @property(nonatomic, strong) NSArray *allKeys;
- @end
- @implementation WFCUContactListViewController
- - (instancetype)init {
- self = [super init];
- if (self) {
- [self setup];
- }
- return self;
- }
- - (instancetype)initWithCoder:(NSCoder *)aDecoder {
- self = [super initWithCoder:aDecoder];
- if (self) {
- [self setup];
- }
- return self;
- }
- - (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
- self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
- if (self) {
- [self setup];
- }
- return self;
- }
- - (void)setup {
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onFriendRequestUpdated:) name:kFriendRequestUpdated object:nil];
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- CGRect frame = self.view.frame;
- self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)];
- self.tableView.delegate = self;
- self.tableView.dataSource = self;
- self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- self.tableView.tableHeaderView = nil;
- if (self.selectContact) {
- self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"取消" style:UIBarButtonItemStyleDone target:self action:@selector(onLeftBarBtn:)];
-
- if(self.multiSelect) {
- self.selectedContacts = [[NSMutableArray alloc] init];
- [self updateRightBarBtn];
- }
- } else {
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"nav_add_friend"] style:UIBarButtonItemStyleDone target:self action:@selector(onRightBarBtn:)];
- }
-
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onUserInfoUpdated:) name:kUserInfoUpdated object:nil];
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onContactsUpdated:) name:kFriendListUpdated object:nil];
-
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onClearAllUnread:) name:@"kTabBarClearBadgeNotification" object:nil];
-
- _searchList = [NSMutableArray array];
-
- self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
- self.searchController.searchResultsUpdater = self;
- self.searchController.delegate = self;
- self.searchController.dimsBackgroundDuringPresentation = NO;
- [self.searchController.searchBar setValue:@"取消" forKey:@"_cancelButtonText"];
- if (@available(iOS 9.1, *)) {
- self.searchController.obscuresBackgroundDuringPresentation = NO;
- }
-
- [self.searchController.searchBar setPlaceholder:@"搜索联系人"];
- if (@available(iOS 11.0, *)) {
- self.navigationItem.searchController = _searchController;
- _searchController.hidesNavigationBarDuringPresentation = YES;
- } else {
- self.tableView.tableHeaderView = _searchController.searchBar;
- }
- self.definesPresentationContext = YES;
-
- self.tableView.sectionIndexColor = [UIColor grayColor];
- [self.view addSubview:self.tableView];
- [self.tableView reloadData];
- }
- - (void)updateRightBarBtn {
- if(self.selectedContacts.count == 0) {
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"确定" style:UIBarButtonItemStyleDone target:self action:@selector(onRightBarBtn:)];
- self.navigationItem.rightBarButtonItem.enabled = NO;
- } else {
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:[NSString stringWithFormat:@"确定(%d)", (int)self.selectedContacts.count] style:UIBarButtonItemStyleDone target:self action:@selector(onRightBarBtn:)];
- }
- }
- - (void)onRightBarBtn:(UIBarButtonItem *)sender {
- if (self.selectContact) {
- if (self.selectedContacts) {
- dispatch_async(dispatch_get_main_queue(), ^{
- self.selectResult(self.selectedContacts);
- });
- }
- [self left:nil];
- } else {
- UIViewController *addFriendVC = [[WFCUAddFriendViewController alloc] init];
- addFriendVC.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:addFriendVC animated:YES];
- }
- }
- - (void)onLeftBarBtn:(UIBarButtonItem *)sender {
- [self left:nil];
- }
- - (void)left:(void (^)(void))completion {
- if (self.isPushed) {
- [self.navigationController popViewControllerAnimated:YES];
- } else {
- [self.navigationController dismissViewControllerAnimated:YES completion:completion];
- }
- }
- - (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
-
- self.dataArray = [[NSMutableArray alloc] init];
- [self loadContact:YES];
- [self updateBadgeNumber];
- }
- - (void)loadContact:(BOOL)forceLoadFromRemote {
- [self.dataArray removeAllObjects];
- NSArray *userIdList;
- if (self.candidateUsers.count) {
- userIdList = self.candidateUsers;
- } else {
- userIdList = [[WFCCIMService sharedWFCIMService] getMyFriendList:forceLoadFromRemote];
- }
- for (NSString *userId in userIdList) {
- WFCCUserInfo *userInfo = [[WFCCIMService sharedWFCIMService] getUserInfo:userId refresh:NO];
- if (userInfo == nil) {
- userInfo = [[WFCCUserInfo alloc] init];
- userInfo.userId = userId;
- userInfo.displayName = [NSString stringWithFormat:@"User<%@>", userId];
- }
-
- [self.dataArray addObject:userInfo];
- }
-
- [self sortAndRefreshWithList:self.dataArray];
- }
- - (void)onUserInfoUpdated:(NSNotification *)notification {
- WFCCUserInfo *userInfo = notification.userInfo[@"userInfo"];
- BOOL needRefresh = NO;
- for (WFCCUserInfo *ui in self.dataArray) {
- if ([ui.userId isEqualToString:userInfo.userId]) {
- needRefresh = YES;
- [ui cloneFrom:userInfo];
- break;
- }
- }
- if(needRefresh) {
- [self sortAndRefreshWithList:self.dataArray];
- [self.tableView reloadData];
- }
- }
- - (void)onContactsUpdated:(NSNotification *)notification {
- [self loadContact:NO];
- }
- - (void)sortAndRefreshWithList:(NSArray *)friendList {
- dispatch_async(dispatch_get_global_queue(0, 0), ^{
- self.resultDic = [WFCUContactListViewController sortedArrayWithPinYinDic:friendList];
- dispatch_async(dispatch_get_main_queue(), ^{
- self.allFriendSectionDic = self.resultDic[@"infoDic"];
- self.allKeys = self.resultDic[@"allKeys"];
- if (!self.selectContact && !self.searchController.active) {
- UILabel *countLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 48)];
- countLabel.textAlignment = NSTextAlignmentCenter;
-
- UIView *line = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 0.5)];
- line.backgroundColor = [UIColor colorWithRed:0.7 green:0.7 blue:0.7 alpha:0.8];
- [countLabel addSubview:line];
-
- [countLabel setText:[NSString stringWithFormat:@"%d位联系人", (int)self.dataArray.count]];
- countLabel.font = [UIFont systemFontOfSize:14];
- countLabel.textColor = [UIColor grayColor];
-
- self.tableView.tableFooterView = countLabel;
- } else {
- self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- }
-
- [self.tableView reloadData];
- });
- });
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- - (void)onFriendRequestUpdated:(id)sender {
- [self updateBadgeNumber];
- }
- - (void)onClearAllUnread:(NSNotification *)notification {
- if ([notification.object intValue] == 1) {
- [[WFCCIMService sharedWFCIMService] clearUnreadFriendRequestStatus];
- [self updateBadgeNumber];
- }
- }
- - (void)updateBadgeNumber {
- int count = [[WFCCIMService sharedWFCIMService] getUnreadFriendRequestStatus];
- [self.tabBarController.tabBar showBadgeOnItemIndex:1 badgeValue:count];
- }
- #pragma mark - UITableViewDataSource
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- NSArray *dataSource;
- if (self.searchController.active || self.selectContact) {
- if (self.showCreateChannel && !self.searchController.active) {
- if (section == 0) {
- return 1;
- }
- dataSource = self.allFriendSectionDic[self.allKeys[section-1]];
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[section]];
- }
- return dataSource.count;
- } else {
- if (section == 0) {
- return 3;
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[section - 1]];
- return dataSource.count;
- }
- }
- }
- // Row display. Implementers should *always* try to reuse cells by setting each cell's reuseIdentifier and querying for available reusable cells with dequeueReusableCellWithIdentifier:
- // Cell gets various attributes set automatically based on table (separators) and data source (accessory views, editing controls)
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- UITableViewCell *cell = nil;
-
- #define REUSEIDENTIFY @"resueCell"
- NSArray *dataSource;
- if (self.searchController.active || self.selectContact) {
- if (self.showCreateChannel && !self.searchController.active) {
- if (indexPath.section == 0) {
- cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"new_channel"];
- cell.textLabel.text = @"新建频道";
- return cell;
- }
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section-1]];
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section]];
- }
-
- } else {
- if (indexPath.section == 0) {
- if (indexPath.row == 0) {
- WFCUNewFriendTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:@"newFriendCell"];
- if (contactCell == nil) {
- contactCell = [[WFCUNewFriendTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"newFriendCell"];
- }
- contactCell.nameLabel.text = @"新朋友";
- contactCell.portraitView.image = [UIImage imageNamed:@"friend_request_icon"];
- [contactCell refresh];
- return contactCell;
- } else if(indexPath.row == 1) {
- WFCUContactTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (contactCell == nil) {
- contactCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
-
- contactCell.nameLabel.text = @"群组";
- contactCell.portraitView.image = [UIImage imageNamed:@"contact_group_icon"];
-
- return contactCell;
- } else {
- WFCUContactTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (contactCell == nil) {
- contactCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
-
- contactCell.nameLabel.text = @"频道";
- contactCell.portraitView.image = [UIImage imageNamed:@"contact_channel_icon"];
-
- return contactCell;
- }
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section - 1]];
- }
- }
-
- if (self.selectContact) {
- #define SELECT_REUSEIDENTIFY @"resueSelectCell"
- WFCUContactSelectTableViewCell *selectCell = [tableView dequeueReusableCellWithIdentifier:SELECT_REUSEIDENTIFY];
- if (selectCell == nil) {
- selectCell = [[WFCUContactSelectTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SELECT_REUSEIDENTIFY];
- selectCell.selectionStyle = UITableViewCellSelectionStyleNone;
- }
- WFCCUserInfo *userInfo = dataSource[indexPath.row];
- selectCell.friendUid = userInfo.userId;
- selectCell.multiSelect = self.multiSelect;
-
- if (self.multiSelect) {
- if ([self.selectedContacts containsObject:userInfo.userId]) {
- selectCell.checked = YES;
- } else {
- selectCell.checked = NO;
- }
- if ([self.disableUsers containsObject:userInfo.userId]) {
- selectCell.disabled = YES;
- if(self.disableUsersSelected) {
- selectCell.checked = YES;
- } else {
- selectCell.checked = NO;
- }
- } else {
- selectCell.disabled = NO;
- }
- }
- cell = selectCell;
- } else {
- #define REUSEIDENTIFY @"resueCell"
-
- if (indexPath.section == 0 && !self.searchController.active) {
- if (indexPath.row == 0) {
- WFCUNewFriendTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:@"newFriendCell"];
- if (contactCell == nil) {
- contactCell = [[WFCUNewFriendTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"newFriendCell"];
- }
- [contactCell refresh];
- contactCell.nameLabel.text = @"新朋友";
- contactCell.portraitView.image = [UIImage imageNamed:@"friend_request_icon"];
- cell = contactCell;
- } else {
- WFCUContactTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (contactCell == nil) {
- contactCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
- contactCell.nameLabel.text = @"群组";
- contactCell.portraitView.image = [UIImage imageNamed:@"contact_group_icon"];
- cell = contactCell;
- }
- } else {
- WFCUContactTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (contactCell == nil) {
- contactCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
-
- WFCCUserInfo *userInfo = dataSource[indexPath.row];
- contactCell.userId = userInfo.userId;
- cell = contactCell;
- }
- }
- return cell;
- }
- -(NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView {
- if (@available(iOS 11.0, *)) {
- if (self.selectContact) {
- if (self.showCreateChannel && !self.searchController.active) {
- NSMutableArray *indexs = [self.allKeys mutableCopy];
- [indexs insertObject:@"" atIndex:0];
- return indexs;
- }
- return self.allKeys;
- }
- if (self.searchController.active) {
- return self.allKeys;
- }
- NSMutableArray *indexs = [self.allKeys mutableCopy];
- [indexs insertObject:@"" atIndex:0];
- return indexs;
- } else {
- return nil;
- }
- }
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- if (self.selectContact) {
- if (self.showCreateChannel && !self.searchController.active) {
- return self.allKeys.count + 1;
- }
- return self.allKeys.count;
- }
- if (self.searchController.active) {
- return self.allKeys.count;
- }
- return 1 + self.allKeys.count;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- if (section == 0) {
- return 0;
- }
- return 21;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
- NSString *title;
- if (self.selectContact || self.searchController.active) {
- if (self.showCreateChannel && !self.searchController.active) {
- if (section == 0) {
- return nil;
- }
- title = self.allKeys[section-1];
- } else {
- title = self.allKeys[section];
- }
- } else {
- if (section == 0) {
- return nil;
- } else {
- title = self.allKeys[section - 1];
- }
- }
- if (title == nil || title.length == 0) {
- return nil;
- }
- UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 21)];
- label.font = [UIFont systemFontOfSize:13];
- label.textColor = [UIColor grayColor];
- label.textAlignment = NSTextAlignmentLeft;
- label.text = [NSString stringWithFormat:@" %@", title];
- label.backgroundColor = [UIColor colorWithRed:239/255.f green:239/255.f blue:239/255.f alpha:1.0f];
- return label;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return 56;
- }
- - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
- if (self.selectContact) {
- return index;
- }
- if (self.searchController.active) {
- return index;
- }
- return index;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- NSArray *dataSource;
- if (self.searchController.active || self.selectContact) {
- if (self.showCreateChannel && !self.searchController.active) {
- if (indexPath.section == 0) {
- [self left:^{
- if (self.createChannel) {
- self.createChannel();
- }
- }];
- return;
- }
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section-1]];
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section]];
- }
-
- } else {
- if (indexPath.section == 0) {
- if (indexPath.row == 0) {
- UIViewController *addFriendVC = [[WFCUFriendRequestViewController alloc] init];
- addFriendVC.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:addFriendVC animated:YES];
- } else if(indexPath.row == 1) {
- WFCUFavGroupTableViewController *groupVC = [[WFCUFavGroupTableViewController alloc] init];;
- groupVC.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:groupVC animated:YES];
- } else {
- WFCUFavChannelTableViewController *channelVC = [[WFCUFavChannelTableViewController alloc] init];;
- channelVC.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:channelVC animated:YES];
- }
- return;
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section - 1]];
- }
- }
-
- if (self.selectContact) {
- WFCCUserInfo *userInfo = dataSource[indexPath.row];
- if (self.multiSelect) {
- if ([self.disableUsers containsObject:userInfo.userId]) {
- return;
- }
-
- if ([self.selectedContacts containsObject:userInfo.userId]) {
- [self.selectedContacts removeObject:userInfo.userId];
- ((WFCUContactSelectTableViewCell *)[tableView cellForRowAtIndexPath:indexPath]).checked = NO;
- } else {
- [self.selectedContacts addObject:userInfo.userId];
- ((WFCUContactSelectTableViewCell *)[tableView cellForRowAtIndexPath:indexPath]).checked = YES;
- }
- [self updateRightBarBtn];
- } else {
- self.selectResult([NSArray arrayWithObjects:userInfo.userId, nil]);
- [self left:nil];
- }
- } else {
- WFCUMessageListViewController *mvc = [[WFCUMessageListViewController alloc] init];
- WFCCUserInfo *friend = dataSource[indexPath.row];
- mvc.conversation = [WFCCConversation conversationWithType:Single_Type target:friend.userId line:0];
- mvc.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:mvc animated:YES];
- }
- }
- - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
- if (self.searchController.active) {
- [self.searchController.searchBar resignFirstResponder];
- }
- }
- #pragma mark - UISearchControllerDelegate
- - (void)didPresentSearchController:(UISearchController *)searchController {
- self.tabBarController.tabBar.hidden = YES;
- }
- - (void)willDismissSearchController:(UISearchController *)searchController {
- self.tabBarController.tabBar.hidden = NO;
- }
- - (void)didDismissSearchController:(UISearchController *)searchController {
- [self loadContact:NO];
- [self.tableView reloadData];
- }
- -(void)updateSearchResultsForSearchController:(UISearchController *)searchController {
- NSString *searchString = [self.searchController.searchBar text];
- if (self.searchList!= nil) {
- [self.searchList removeAllObjects];
- for (WFCCUserInfo *friend in self.dataArray) {
- if ([friend.displayName containsString:searchString]) {
- [self.searchList addObject:friend];
- }
- }
- }
-
- [self sortAndRefreshWithList:self.searchList];
- [self.tableView reloadData];
- }
- + (NSMutableDictionary *)sortedArrayWithPinYinDic:(NSArray *)userList {
- if (!userList)
- return nil;
- NSArray *_keys = @[
- @"A",
- @"B",
- @"C",
- @"D",
- @"E",
- @"F",
- @"G",
- @"H",
- @"I",
- @"J",
- @"K",
- @"L",
- @"M",
- @"N",
- @"O",
- @"P",
- @"Q",
- @"R",
- @"S",
- @"T",
- @"U",
- @"V",
- @"W",
- @"X",
- @"Y",
- @"Z",
- @"#"
- ];
-
- NSMutableDictionary *infoDic = [NSMutableDictionary new];
- NSMutableArray *_tempOtherArr = [NSMutableArray new];
- BOOL isReturn = NO;
-
- for (NSString *key in _keys) {
-
- if ([_tempOtherArr count]) {
- isReturn = YES;
- }
- NSMutableArray *tempArr = [NSMutableArray new];
- for (id user in userList) {
- NSString *firstLetter;
- WFCCUserInfo *userInfo = (WFCCUserInfo*)user;
- firstLetter = [self getFirstUpperLetter:userInfo.displayName];
-
-
- if ([firstLetter isEqualToString:key]) {
- [tempArr addObject:user];
- }
-
- if (isReturn)
- continue;
- char c = [firstLetter characterAtIndex:0];
- if (isalpha(c) == 0) {
- [_tempOtherArr addObject:user];
- }
- }
- if (![tempArr count])
- continue;
- [infoDic setObject:tempArr forKey:key];
- }
- if ([_tempOtherArr count])
- [infoDic setObject:_tempOtherArr forKey:@"#"];
-
- NSArray *keys = [[infoDic allKeys]
- sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {
-
- return [obj1 compare:obj2 options:NSNumericSearch];
- }];
- NSMutableArray *allKeys = [[NSMutableArray alloc] initWithArray:keys];
-
- NSMutableDictionary *resultDic = [NSMutableDictionary new];
- [resultDic setObject:infoDic forKey:@"infoDic"];
- [resultDic setObject:allKeys forKey:@"allKeys"];
- [infoDic enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
- NSMutableArray *_tempOtherArr = (NSMutableArray *)obj;
- [_tempOtherArr sortUsingComparator:^NSComparisonResult(id _Nonnull obj1, id _Nonnull obj2) {
- WFCCUserInfo *user1 = (WFCCUserInfo *)obj1;
- WFCCUserInfo *user2 = (WFCCUserInfo *)obj2;
- NSString *user1Pinyin = [WFCUContactListViewController hanZiToPinYinWithString:user1.displayName];
- NSString *user2Pinyin = [WFCUContactListViewController hanZiToPinYinWithString:user2.displayName];
- return [user1Pinyin compare:user2Pinyin];
- }];
- }];
- return resultDic;
- }
- + (NSString *)getFirstUpperLetter:(NSString *)hanzi {
- NSString *pinyin = [self hanZiToPinYinWithString:hanzi];
- NSString *firstUpperLetter = [[pinyin substringToIndex:1] uppercaseString];
- if ([firstUpperLetter compare:@"A"] != NSOrderedAscending &&
- [firstUpperLetter compare:@"Z"] != NSOrderedDescending) {
- return firstUpperLetter;
- } else {
- return @"#";
- }
- }
- + (NSString *)hanZiToPinYinWithString:(NSString *)hanZi {
- if (!hanZi) {
- return nil;
- }
- NSString *pinYinResult = [NSString string];
- for (int j = 0; j < hanZi.length; j++) {
- NSString *singlePinyinLetter = nil;
- if ([self isChinese:[hanZi substringWithRange:NSMakeRange(j, 1)]]) {
- singlePinyinLetter = [[NSString
- stringWithFormat:@"%c", pinyinFirstLetter([hanZi characterAtIndex:j])]
- uppercaseString];
- }else{
- singlePinyinLetter = [hanZi substringWithRange:NSMakeRange(j, 1)];
- }
-
- pinYinResult = [pinYinResult stringByAppendingString:singlePinyinLetter];
- }
- return pinYinResult;
- }
- + (BOOL)isChinese:(NSString *)text
- {
- NSString *match = @"(^[\u4e00-\u9fa5]+$)";
- NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF matches %@", match];
- return [predicate evaluateWithObject:text];
- }
- @end
|