0

我正在使用 IOS 5 和 Storyboard 编码。我已经构建了一个应用程序,其中我有一个 tableView 连接到一个带有搜索栏的 sqlite 数据库。当我们触摸一行时,它会自动将我们带到另一个名为“Details”的视图控制器。我需要将数据从我的表格视图传递到详细信息视图控制器,例如将 author.title 传递给 labelText.text 字段。有任何想法吗?

编辑问题:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
//    NSString *Title;
    Details *dv = (Details*)segue.destinationViewController;
    author.title = dv.labelText.text;
}

部分代码:

//
//  Details.m
//  AuthorsApp
//
//  Created by georges ouyoun on 7/17/12.
//  Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//

#import "Details.h"
#import "Author.h"


@interface Details ()

@end

@implementation Details

@synthesize labelText;
@synthesize selectedAuthors;
@synthesize author;

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


- (void)viewDidLoad
{
    [super viewDidLoad];
   self.labelText.text = self.author.title;
    // Do any additional setup after loading the view.
    NSLog(@"Everything is ok now !");
}

- (void)viewDidUnload
{
  //  [self setLabelText:nil];
    NSLog(@"U have entered view did unload");
    [super viewDidUnload];

    [self setLabelText:Nil];
    // Release any retained subviews of the main view.
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
//    NSString *Title;
    Details *dv = (Details*)segue.destinationViewController;
  //  author.title = dv.labelText.text;
    dv.labelText.text = author.title;
}




/*
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{

    if ([segue.identifier isEqualToString:@"AuthorsCell"]) {

        [segue.destinationViewController setLabelText:author.title];

    }


}




/*
-(void)viewWillAppear:(BOOL)animated
{ 

    self.labelText.text = author.title;

    NSLog(@"U have entered the viewWillAppear tag");
  //  detailsLabel.text = food.description;
}
*/

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

- (void)dealloc {
    [labelText release];
    [super dealloc];
}
@end
4

2 回答 2

6

出于演示目的,我假设我们有两个视图控制器ListViewControllerDetailViewController. ListViewController 有 tableview,你已经创建了一个segue between your tableview cell and details view controller.

我假设您将其命名为“DetailSegue”。您的故事板应该类似于下图。

在此处输入图像描述

选择 tableViewCell 和 DetailViewController 之间的 segue,打开属性检查器并将标识符指定为“DetailSegue”。见下图,

在此处输入图像描述

现在运行应用程序,您应该会看到从 ListViewController 到 DetailViewController 的平滑导航。

Assuming you datasource is an array of stings and you have your datasource and delegate setup already properly for your list tableView.

在您的列表视图控制器中添加一个方法 prepareForSegue:sender,这个方法将在 segue 即将执行时被调用。这个方法将被自动调用。

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
   if ([segue.identifier isEqualToString:@"DetailSegue"]) {
    DetailViewController *detailVC = (DetailViewController*)segue.destinationViewController;
    NSIndexPath *indexPath = [self.tableView indexPathForCell:(UITableViewCell *)sender];
    detailVC.title = [self.source objectAtIndex:indexPath.row];
  }
}

添加一个title在 DetailViewController 中调用的属性来存储选定的标题,并为 UILabel 添加另一个出口以在视图中显示标题。

DetailViewController.h

#import <Foundation/Foundation.h>

@interface RecipeListViewController : NSObject

@property (weak, nonatomic) NSString *title;
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;

@end

细节视图控制器.m

@implementation RecipeListViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.titleLabel.text = self.title;
}
@end

不要忘记连接插座。我希望这能让你大致了解我们如何在视图控制器之间传递数据。

于 2013-11-06T07:43:26.913 回答
0

是的,您需要使用

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender

方法(覆盖)女巫允许您通过获取 segue.destinationViewController 来传递详细信息,然后设置目标控制器的属性。

例如

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
detailViewController *dv = (detailViewController*)segue.destinationViewController;
dv.attribute1 = dataFromTable;
}

例如,如果您在数组中有表格数据,那么一种简单的方法是获取推送的行的行号并将其设置为变量

int rowPressed;

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

rowPressed = indexPath.row;

}

然后在将PrepareForSegue数据传递给DetailViewController。使用 rowPressed 从您的数据模型中获取相关数据。

希望这可以帮助!

于 2012-07-18T07:12:37.947 回答