0

我在UIViewController中有一个UITableView。我在 Storyboard 中创建了其他 UIViewController,我想连接到我的单元格。

如何将Storyboard 中创建的UIViewControllers连接到我的单元格?


MyViewController.h

@interface MyViewController : UIViewController <UITableViewDelegate,    UITableViewDataSource> {
    IBOutlet UITableView *myTableView;
}

@property (nonatomic, retain) UITableView *myTableView;

我的视图控制器.m

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSArray *array = [[NSArray alloc] initWithObjects:@"CELL1", @"CELL2 & CELL3", nil];
    self.listData = array;
    [array release];

    [myTableView setDataSource:self];
    [myTableView setDelegate:self];

    [[self view] addSubview:myTableView];
}

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


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

    UpdatesTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {

        NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"UpdatesTableViewCell" owner:nil options:nil];

        for (UIView *view in views) {
            if([view isKindOfClass:[UITableViewCell class]])
            {
                cell = (UpdatesTableViewCell*)view;
            }
        }
    }

    NSUInteger row = [indexPath row];
    cell.textLabel.text = [listData objectAtIndex:row];

    return cell;
}
4

1 回答 1

1

您可以创建从该控制器到其他控制器的转场,然后选择在有人点击单元格时执行哪个转场,或者您可以使用对情节提要的引用来调用instantiateViewControllerWithIdentifier:并在点击时激活该控制器。

于 2012-10-12T14:28:02.763 回答