SearchTableViewController.h 487 B

123456789101112131415161718
  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. @interface SearchTableViewController : UITableViewController
  8. @property (nonatomic, strong) NSMutableDictionary *contacts;
  9. @property (nonatomic, strong) NSArray *indexes;
  10. - (void)setSearchResultContacts:(NSMutableDictionary *)contacts withIndexes:(NSArray *)indexes;
  11. - (void)showSearchingUI;
  12. @end