0

我有一个填充了名为“Htgg”的 plist 的表格视图。我正在尝试将值推送到一个名为“DetailViewController”的新视图。

这是代码:

#import "Glist.h"

#import "DetailViewController.h"

@implementation Glist
@synthesize htgg,detailViewController;


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        self.title = NSLocalizedString(@"ofek", @"ofek");
    }
    return self;
}

- (void)viewDidLoad
{

    [super viewDidLoad];

    self.navigationItem.title = @"איך להוציא גימלים?";
    NSString *htggFile = [[NSBundle mainBundle]pathForResource:@"Htgg" ofType:@"plist"];
    htgg = [[NSDictionary alloc] initWithContentsOfFile: htggFile];

}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source

- (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 [htgg count];
}

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }


    id keys = [htgg allKeys];


    //Get all the keys in the first dictionary (the keys are: "good", "funny", "New - Item 3")
    //This is an array, so you can do this: array[0] (in C#)

    //Here we tell the tableview cell. to put in the text - [keys objectsAtIndex:indexPath.row]; if the row is 0, we will get: "good", if 1, we will get "funny"
    cell.textLabel.text = [keys objectAtIndex:indexPath.row];


    return cell;
}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the specified item to be editable.
    return NO;
}

#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    DetailViewController *showPickedSolution = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:[NSBundle mainBundle]];
    [self.navigationController pushViewController:showPickedSolution animated:YES];


    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}
@end

该代码工作完美,但它不会推送行的值(plist的所有行都是字符串类型,上面有'Root')。

我需要您的帮助将值推送到另一个视图(DetailViewController)。

4

3 回答 3

1

在您DetailViewController的数据中创建与您要推送的数据相同类型的属性,然后使用

DetailViewController *showPickedSolution = [[DetailViewController alloc]  
 initWithNibName:@"DetailViewController" bundle:[NSBundle mainBundle]];
 showPickedSolution.yourPropertName = [htgg objectAt:indexPath.Row];      

[self.navigationController pushViewController:showPickedSolution animated:YES];

您现在可以 DetailViewController在您的财产中访问传递的数据。

请检查语法。

于 2012-12-28T09:03:23.453 回答
0

为此,您可以NSString在类中创建一个属性DetailViewController并将该属性设置在didSelectRowAtIndexPath. 这是供您参考的代码:

showPickedSolution.valueToBeSent = [htgg valueForKey:[[htgg allKeys] objectAtIndex:indexPath.row]];

你可以valueToBeSentDetailViewController课堂上使用它。

于 2012-12-28T09:02:30.523 回答
0

根据场景,我以两种不同的方式完成了此操作:

1)委托,当我在表格上填写一些我想传回原始屏幕的值时。

2) Storyboard Segue,当我想将一些值发送到第二个屏幕时。

我通常将我想要的所有值放在一个数组中以发送对象,然后在到达时提取我需要的东西。

我可以参考iOS 开发网站的入门部分,而不是解释每种方式。

我希望它有帮助!

于 2012-12-28T09:03:19.413 回答