如何在tableview中选择一个单元格来打开一个新的视图控制器?

时间:2012-04-11 10:02:24

标签: xcode4.2

我使用Xcode 4.3.2和故事板,因为我是一个新手,所以代码知识不是很好。到目前为止,我已经通过主视图控制器创建了链接到包含数据的tableview。但是我不知道如何将其链接到新的视图控制器,即如果我将新的视图控制器拖到故事板页面上,我希望能够在tableview中选择单元格,然后打开包含详细信息的新页面。到目前为止,我的代码在教程的帮助下是: -

Viewcontroller.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UITabBarDelegate, UITableViewDataSource, UISearchBarDelegate>
    {
    IBOutlet UITableView * tableView;
    IBOutlet UISearchBar * searchBar;

        NSArray * allItems;
        NSMutableArray * displayItems;
}

@end

Viewcontroller.m

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    allItems = [[NSArray alloc] initWithObjects:@"K12", @"K14", @"K16", @"K18", @"K42", @"K43", @"K46", @"K53", @"K60", @"K68", @"K81", @"K83", nil];
    displayItems = [[NSMutableArray alloc] initWithArray:allItems];

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return  1;    
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [displayItems count];
}

- (UITableViewCell *)tableView:(UITableView *)atableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
    }
    cell.textLabel.text = [displayItems objectAtIndex:indexPath.row];
    return cell;
}

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
    if ([searchText length] == 0) {
        [displayItems removeAllObjects];
        [displayItems addObjectsFromArray:allItems];
    } else {
        //here
        [displayItems removeAllObjects];
        for (NSString * string in allItems) {
            NSRange r = [string rangeOfString:searchText options:NSCaseInsensitiveSearch];
            if (r.location != NSNotFound) {
                [displayItems addObject:string];
        }
    }
}

    [tableView reloadData];
}

- (void)searchBarSearchButtonClicked:(UISearchBar *)aSearchBar {
    [searchBar resignFirstResponder];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
}

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

@end

我感觉很舒服,只是坚持这一点的应用程序的其余部分和搜索教程看了各种代码,但因为我的知识非常有限我只需要一个假人指南或更好仍然如果有人可以告诉我添加什么代码这将是伟大的。

谢谢大家和帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

好的,我将假设您将使用相同的笔尖来显示信息,无论选择哪一行。首先,右键单击或按住Ctrl键单击“视图”文件夹,然后选择“新建文件”。使用.xib创建一个新的UIViewController类。我的视图控制器将有一个标签(用于汽车的名称),一个UIImageView(汽车的,由与汽车同名的图像填充,带有.jpg附录),以及由字典填充的textView 。 textView将显示有关汽车的信息,我已经预先加载了包含汽车名称信息的字典,如下所示:

[dictionary setObject:@"This is a car." forKey:@"Ford Taurus"];

字典是单例,因此每个类都可以访问它(请参阅https://stackoverflow.com/a/10093449/542400了解如何实现)。现在我有了新的viewController(让我们称之为“NewVC”),使用合成字符串(所以我的第一个viewController可以访问它),我将确保我的第一个viewController在选择行时会响应:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    NewVC *new = [[NewVC alloc] init];
    //assuming you have no array from which you populated your table
    new.myString = [[[myTable cellForRowAtIndexPath:indexPath] textLabel] text];

    //assuming you have a navigationController
    [self.navigationController pushViewController:new animated:YES]; 
}

现在,在我的NewVC的-viewWillAppear方法中,我实现了以下内容:

-(void)viewWillAppear:(BOOL)animated{
    [myLabel setText:myString];
    NSString *string = [NSString stringWithFormat:@"%@.jpg", myString];
    UIImage *image = [UIImage imageNamed:string];
    [myImageView setImage:image];
    //see above for sharedDictionary info
    [myTextView setText: [[MainDictionary sharedDictionary]getStringForKey:myString]];
    [super viewWillAppear:YES];
}

这是一个非常基本的实现,但我希望它能使这个过程变得清晰。通过为字典键和图像名称建立一个简单的命名约定,您将使您的工作变得更加容易。