1

我对 xcode 很陌生,所以我在执行此任务时遇到了麻烦。我创建了一个带有搜索栏的表格,其名称被传递到带有 UILabel 的详细视图,该 UILabel 显示单击的单元格的相应名称。搜索栏有效并过滤结果。我使用本教程来帮助我:

http://www.appcoda.com/how-to-add-search-bar-uitableview/

现在我想在详细视图中而不是 UILabel 中有一个图像,它对应于每个单元格,但我无法弄清楚如何做到这一点。这是我正在使用的代码:

表视图控制器.h:

@interface SearchViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, strong) IBOutlet UITableView *tableView;

表视图控制器.m:

@interface SearchViewController ()

@end


@implementation SearchViewController {
    NSArray *cards;
    NSArray *searchResults;}

@synthesize tableView = _tableView;
-(void)viewDidLoad
{
    [super viewDidLoad];
    cards = [NSArray arrayWithObjects:
             @"Snivy",
             @"Servine",
             @"Serperior",
             @"Tepig",
             @"Pignite",
             @"Emboar",
             @"Oshawott",
             @"Dewott",
             @"Samurott", nil];

}

- (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
{
    NSPredicate *resultPredicate = [NSPredicate
                                    predicateWithFormat:@"SELF contains[cd] %@",
                                    searchText];

    searchResults = [cards filteredArrayUsingPredicate:resultPredicate];}


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

    return YES;
}
- (void)viewDidUnload
{
    [super viewDidUnload];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        return [searchResults count];

    } else {
        return [cards count];
    }

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"SearchCardCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    if (tableView == self.searchDisplayController.searchResultsTableView) {
        cell.textLabel.text = [searchResults objectAtIndex:indexPath.row];
    } else {
        cell.textLabel.text = [cards objectAtIndex:indexPath.row];
    }



    return cell;}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if ([segue.identifier isEqualToString:@"ShowSearchCard"]) {
        SearchCardViewController *destViewController = segue.destinationViewController;

        NSIndexPath *indexPath = nil;

        if ([self.searchDisplayController isActive]) {
            indexPath = [self.searchDisplayController.searchResultsTableView indexPathForSelectedRow];
            destViewController.cardName = [searchResults objectAtIndex:indexPath.row];

        } else {
            indexPath = [self.tableView indexPathForSelectedRow];
            destViewController.cardName = [cards objectAtIndex:indexPath.row];
        }
    }

}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        [self performSegueWithIdentifier: @"ShowSearchCard" sender: self];
    }
}

UIViewController.h:

@property (strong, nonatomic) IBOutlet UILabel *cardLabel;
@property (strong, nonatomic) NSString *cardName;
@property (strong, nonatomic) NSArray *searchCardDetail;

UIViewController.m:

@implementation SearchCardViewController

@synthesize cardLabel;
@synthesize cardName;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    cardLabel.text = cardName;

    // Do any additional setup after loading the view.
}

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

- (void)viewDidUnload {

    [super viewDidUnload];
}

所以详细地说,“卡片”是表中的名称。现在,它转到卡片名称的 UILabel ,我想要它,在搜索时转到常规表和过滤表中的卡片的相应图像。感谢您的时间和帮助!谢谢!

4

1 回答 1

0

我不确定我是否正确理解了您的问题,但我会使用以下三种方法之一:

第一:最简单的方法是遵循本教程

第二:创建您将使用的自定义单元格,而不是默认单元格。为了让你走上正轨,你可以查看这个很好的教程How to create custom cell。在您的自定义单元格中,您将声明额外的变量 UIImage,它将显示或不会显示在您的表格视图中。重点是,您可以在prepareForSegue方法中将其发送到您的 detailViewController。

第三:创建NSDictionary,您将在其中为键(项目名称)提供值(项目的图像)。然后,将它在prepareForSegue中传递给您的 NSDictionary 中的 detailViewController。之后,只需根据您收到的项目名称将您的 UIImage 分配给您 detailViewController 中的 UIImageView。(所以你仍然会发送 name 然后 detailImage = [yourdict objectForKey:myItemName];)

我在我的 Windows 笔记本电脑上写这个,因为我现在不在工作(那是我的 mac mini 的地方),所以我的回答中可能有一些语法错误:)

于 2013-04-08T11:19:03.940 回答