1

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

视图控制器.h

#import <UIKit/UIKit.h>

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

        NSArray * allItems;
        NSMutableArray * displayItems;
}

@end

视图控制器.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

我觉得解决应用程序的其余部分只是停留在这一点上并搜索教程查看了各种代码但因为我的知识非常有限我只需要一个傻瓜指南或者更好的是如果有人可以告诉我要添加什么代码将是伟大的。

谢谢伙计们,我们将不胜感激。

4

1 回答 1

0

好的,我假设您将使用相同的 nib 来显示信息,而不管选择了哪一行。首先,右键单击或按住 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];
}

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

于 2012-04-12T14:45:12.270 回答