簡體   English   中英

iOS搜索欄未顯示結果

[英]iOS search bar not showing results

*更新:這實際上有效,我的自定義單元格的樣式尚未顯示,因此該單元格看起來空白。 然后如何獲取searchResultsTableView以使用我的自定義單元格?

我已經在表格視圖中實現了搜索欄。 調試時進行搜索,過濾所有工作,但是當我在搜索欄中輸入字符時,結果不會加載或顯示。 這就是我正在做的一切:

@interface InviteTableViewController ()<UIAlertViewDelegate, UISearchBarDelegate, UISearchDisplayDelegate>

@property(nonatomic, strong) NSNumber *contactsCount;
@property(nonatomic, strong) InviteTableViewCell *selectedCell;

@property(strong, nonatomic) NSMutableArray *filteredContactArray;
@property (weak, nonatomic) IBOutlet UISearchBar *contactsSearchBar;
@end

@implementation InviteTableViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void) extractAllContacts: (ABAddressBookRef) addressBookRef{
    NSMutableArray *contactsArray = [NSMutableArray array];
    CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBookRef);
    CFIndex numberOfPeople = ABAddressBookGetPersonCount(addressBookRef);

    for(int i = 0; i < numberOfPeople; i++){
        ABRecordRef person = CFArrayGetValueAtIndex( allPeople, i );
        NSString *firstName = (__bridge NSString *)(ABRecordCopyValue(person, kABPersonFirstNameProperty));
        if(firstName){
        ABMultiValueRef emails = ABRecordCopyValue(person, kABPersonEmailProperty);

        for (CFIndex i = 0; i < ABMultiValueGetCount(emails); i++) {
            NSString *email = (__bridge_transfer NSString *) ABMultiValueCopyValueAtIndex(emails, i);
            MyUser *amUser = [[MyUser alloc] init];
            amUser.email =email;

            NSString *fullName =[NSString stringWithFormat:@"%@ %@",firstName, (__bridge NSString *)(ABRecordCopyValue(person, kABPersonLastNameProperty))];
            amUser.fullName = fullName;
            [contactsArray addObject:amUser];
        }

        }

    }

    NSLog(@"================================count ============= %d", [contactsArray count]);
    contactsArray = [contactsArray sortedArrayUsingComparator:^NSComparisonResult(id a, id b) {
        NSDate *first = [(MyUser*) a fullName];
        NSDate *second = [(MyUser*)b fullName];
        return [first compare:second];
    }];
    self.inviteContactsArray = contactsArray;
    self.filteredContactArray = [NSMutableArray arrayWithCapacity:[contactsArray count]];

    [self.tableView reloadData];


}

- (void)viewDidLoad
{
    [super viewDidLoad];  

    _contactsCount = [NSNumber numberWithInt:0];


    ABAddressBookRef addressBookRef = ABAddressBookCreateWithOptions(NULL, NULL);

    if (ABAddressBookGetAuthorizationStatus() == kABAuthorizationStatusNotDetermined) {
        ABAddressBookRequestAccessWithCompletion(addressBookRef, ^(bool granted, CFErrorRef error) {
            if (granted) {
                [self extractAllContacts: addressBookRef];
                [self.tableView reloadData];
            } else {
                NSString *message = [NSString stringWithFormat:@"You have not given permission to use your address book.  Please allow in settings "];
                UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"Enable Contacts" message:message delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

                [alert show];
            }
        });
    }
    else if (ABAddressBookGetAuthorizationStatus() == kABAuthorizationStatusAuthorized) {
        // The user has previously given access, add the contact
        [self extractAllContacts:addressBookRef];
    }
    else {
        // The user has previously denied access
        // Send an alert telling user to change privacy setting in settings app
    }

[self.tableView reloadData];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    if (tableView == self.searchDisplayController.searchResultsTableView) {
        return [self.filteredContactArray count];
    } else {
        return [self.inviteContactsArray count];
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{


    static NSString *CellIdentifier = @"InviteCell";

    InviteTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if ( cell == nil ) {
        cell = [[InviteTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    MyUser *person = nil;

    if (tableView == self.searchDisplayController.searchResultsTableView)
    {

        person = [self.filteredContactArray objectAtIndex:[indexPath row]];
        NSMutableArray *tempArray = self.filteredContactArray;

    }
    else
    {
        person = [self.inviteContactsArray objectAtIndex:[indexPath row]];
    }




    //InviteTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    person = [self.inviteContactsArray objectAtIndex:indexPath.row];

    cell.nameLabel.text = person.fullName;
    cell.emailLabel.text = person.email;

    return cell;

}




#pragma mark Content Filtering
-(void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope {


    // Update the filtered array based on the search text and scope.
    // Remove all objects from the filtered search array
    [self.filteredContactArray removeAllObjects];
    // Filter the array using NSPredicate
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.fullName contains[c] %@",searchText];
    self.filteredContactArray = [NSMutableArray arrayWithArray:[self.inviteContactsArray filteredArrayUsingPredicate:predicate]];


}

#pragma mark - UISearchDisplayController Delegate Methods

-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
    [self filterContentForSearchText:searchString
                               scope:[[self.searchDisplayController.searchBar scopeButtonTitles]
                                      objectAtIndex:[self.searchDisplayController.searchBar
                                                     selectedScopeButtonIndex]]];

    return YES;
}


@end

看起來是這樣的:

在此處輸入圖片說明

同意@rdelmar。

但是,如果在其中更改代碼,則TableView中會有一種棘手的行為

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    ....
    InviteTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    ....
}

InviteTableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];

如果添加了前綴“ self”。 您的代碼應該可以正常工作。

if ( cell == nil )
 {
    cell = [[InviteTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
 }

是不必要的。 它將只是為您創建一個標准的“字幕單元”,您似乎並不需要,只需刪除它們即可。

如果要對主表和搜索結果表使用相同的單元格,則應在xib中制作該單元格(或者可以完全在代碼中完成)。 在viewDidLoad中,為兩個表視圖注冊筆尖,

- (void)viewDidLoad {
    [super viewDidLoad];
    [self.searchDisplayController.searchResultsTableView registerNib:[UINib nibWithNibName:@"InviteTableViewCell" bundle:nil] forCellReuseIdentifier:@"InviteCell"];
    [self.tableView registerNib:[UINib nibWithNibName:@"InviteTableViewCell" bundle:nil] forCellReuseIdentifier:@"inviteCell"];
}

在cellForRowAtIndexPath中,您可以執行以下操作,

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    InviteTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"InviteCell" forIndexPath:indexPath];
    MyUser *person = ([tableView isEqual:self.tableView])? self.inviteContactsArray[indexPath.row] : self.filteredContactArray[indexPath row];
    cell.nameLabel.text = person.fullName;
    cell.emailLabel.text = person.email;
    return cell;
}

如果您已經在情節提要中設置了單元格,則可以將其復制並粘貼到一個空的xib文件中,因此不必再次進行設置。 您可以從情節提要表視圖中刪除該單元格,因為您將從xib文件中獲取該單元格。

viewdidload中的下面一行應該可以解決問題

self.searchDisplayController.searchResultsTableView.rowHeight = self.tableView.rowHeight

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM