0

我有一个 plist(字典数组),它填充一个表格视图并正常工作。我使用带有情节提要的 Xcode 4。

现在我从常规 UIViewController 创建了一个详细视图,当然我希望所选名称显示在详细视图的 nameLabel 中。但我无法建立正确的联系。到目前为止,这是我的代码:

WineObject.m:

#import "WineObject.h"

@implementation WineObject 
@synthesize libraryContent, libraryPlist;

- (id)initWithLibraryName:(NSString *)libraryName {
    if (self = [super init]) {
        libraryPlist = libraryName;
        libraryContent = [[NSArray alloc] initWithContentsOfFile:[[NSBundle mainBundle] 
                                                              pathForResource:libraryPlist ofType:@"plist"]];
}
return self;
}


- (NSDictionary *)libraryItemAtIndex:(int)index {
return (libraryContent != nil && [libraryContent count] > 0 && index < [libraryContent count]) 
? [libraryContent objectAtIndex:index]
: nil;
}

- (int)libraryCount {
    return (libraryContent != nil) ? [libraryContent count] : 0;
}

- (void) dealloc {
    if (libraryContent) [libraryContent release];
    [super dealloc];
}

@end

视图控制器.h:

#import <UIKit/UIKit.h>
@class WineObject;

@interface WinesViewController : UITableViewController {
WineObject *wine;
}


@end

视图控制器.m:

#import "WinesViewController.h"
#import "WineObject.h"
#import "WineCell.h"

@interface WinesViewController ()

@end

@implementation WinesViewController

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

- (void)viewDidLoad
{
    [super viewDidLoad];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

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

#pragma mark - Table view data source

- (void)viewWillAppear:(BOOL)animated {
    wine = [[WineObject alloc] initWithLibraryName:@"Wine"];
    self.title = @"Vinene";
    [self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow] animated:YES];
}

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [wine libraryCount];
}

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

    WineCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // Configure the cell...

    cell.nameLabel.text = [[wine libraryItemAtIndex:indexPath.row] valueForKey:@"Name"];
    cell.districtLabel.text = [[wine libraryItemAtIndex:indexPath.row] valueForKey:@"District"];
    cell.countryLabel.text = [[wine libraryItemAtIndex:indexPath.row] valueForKey:@"Country"];
    cell.bottleImageView.image = [UIImage imageNamed:[[wine libraryItemAtIndex:indexPath.row] valueForKey:@"Image"]];
    cell.flagImageView.image = [UIImage imageNamed:[[wine libraryItemAtIndex:indexPath.row] valueForKey:@"Flag"]];
    cell.fyldeImageView.image = [UIImage imageNamed:[[wine libraryItemAtIndex:indexPath.row] valueForKey:@"Fylde"]];
    cell.friskhetImageView.image = [UIImage imageNamed:[[wine libraryItemAtIndex:indexPath.row] valueForKey:@"Friskhet"]];
    cell.garvesyreImageView.image = [UIImage imageNamed:[[wine libraryItemAtIndex:indexPath.row] valueForKey:@"Garvesyre"]];

    return cell;
}

#pragma mark - Table view delegate

@end

WineCell.h:

#import <UIKit/UIKit.h>

@interface WineCell : UITableViewCell

@property (nonatomic, strong) IBOutlet UILabel *nameLabel;
@property (nonatomic, strong) IBOutlet UILabel *districtLabel;
@property (nonatomic, strong) IBOutlet UILabel *countryLabel;
@property (nonatomic, strong) IBOutlet UIImageView *bottleImageView;
@property (nonatomic, strong) IBOutlet UIImageView *flagImageView;
@property (nonatomic, strong) IBOutlet UIImageView *fyldeImageView;
@property (nonatomic, strong) IBOutlet UIImageView *friskhetImageView;
@property (nonatomic, strong) IBOutlet UIImageView *garvesyreImageView;

@end
4

1 回答 1

1

您是使用 XIB 作为接口还是以编程方式生成它?


如果您使用的是 XIB,问题是您没有加载它:

改变

winesDetailViewController = [[WinesDetailViewController alloc] init];

winesDetailViewController = [[WinesDetailViewController alloc] initWithNibName:@"YourNibNameHere" bundle:nil];


或者,如果您以编程方式生成它,则必须首先设置 nameLabel 否则它将为零。@synthesize 不设置变量,它只是生成 getter 和 setter,以便您可以从外部设置它。

在你的viewDidAppear:(或者更好的是在你的init)里面添加:

self.nameLabel=[[UILabel alloc] initWithFrame:CGRectMake(100,100,100,100)];


编辑:如果您使用情节提要,看来您必须执行以下操作。

故事板都是关于关系的。在故事板编辑器中,您添加按钮并告诉他们他们连接到哪个视图控制器。同样的想法也适用于 TableView Cells。您可以添加原型表视图单元格(并对其进行自定义)并为其分配关系。您将要为其提供的关系是您的详细视图。

1.)子类 UITableViewCell 并给它一个属性,即您要发送到详细视图的字典

2.) 创建单元格 ( cellForRowAtIndexPath:) 时,您需要确保将自定义单元格出列并将字典分配给您提供的属性。

3.) 确保您的详细视图具有标识符:DetailView

4.) 在表格视图控制器中,添加以下代码:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
   if([segue.identifier isEqualToString:@"DetailView"])
   {
      //This works because by the time prepareForSeque: is called, the navigationController has loaded the new view
      ((DetailView *)[[self.navigationController viewControllers] objectAtIndex:0]).dataProperty=((MyCustomTableViewCell *)sender).dataProperty;
   }
}

应该这样做!

于 2012-06-26T00:11:17.787 回答