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 のすべての行は文字列型で、その上に「ルート」があります)。

値を別のビュー (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]];

valueToBeSentこれをDetailViewControllerクラスで使用できます。

于 2012-12-28T09:02:30.523 に答える
0

シナリオに応じて、2 つの異なる方法でこれを行いました。

1)元の画面に戻したいフォームにいくつかの値を入力するときのデリゲート。

2) ストーリーボード セグエ、いくつかの値を 2 番目の画面に送信したいとき。

私は通常、必要なすべての値を配列に入れてオブジェクトを送信し、到着時に必要なものを抽出します。

それぞれの方法を説明する代わりに、iOS Dev Site のGetting Startedセクションを紹介します。

私はそれが役立つことを願っています!

于 2012-12-28T09:03:19.413 に答える