123456789101112131415161718 |
- /**
- * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
- #import <UIKit/UIKit.h>
- #import "ContactsTableViewCell.h"
- @interface SearchTableViewController : UITableViewController
- @property (nonatomic, strong) NSMutableDictionary *contacts;
- @property (nonatomic, strong) NSArray *indexes;
- - (void)setSearchResultContacts:(NSMutableDictionary *)contacts withIndexes:(NSArray *)indexes;
- - (void)showSearchingUI;
- @end
|