ResultMultiSelectionTableViewController.h 633 B

12345678910111213141516171819202122
  1. /**
  2. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. #import <UIKit/UIKit.h>
  6. #import "ContactsTableViewCell.h"
  7. #import "NCRoom.h"
  8. @interface ResultMultiSelectionTableViewController : UITableViewController
  9. @property (nonatomic, strong) NSMutableDictionary *contacts;
  10. @property (nonatomic, strong) NSArray *indexes;
  11. @property (nonatomic, strong) NSMutableArray *selectedParticipants;
  12. @property (nonatomic, strong) NCRoom *room;
  13. - (void)setSearchResultContacts:(NSMutableDictionary *)contacts withIndexes:(NSArray *)indexes;
  14. - (void)showSearchingUI;
  15. @end