1

これは基本的な問題だと思います。これは、stackoverflow と ofc google がいっぱいであるためです。しかし、何も私を助けませんでした。どの行が選択されているかを示す整数値を別のクラスに渡す必要があります。これが私のコードです:

TableViewController.h

#import <UIKit/UIKit.h>

@interface TableViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>

{
    NSArray *tabledata;
}
@property (nonatomic, retain) NSArray *tabledata;
@property (strong, nonatomic) IBOutlet UITableView *tableView;
@property(nonatomic) NSInteger selectedRow;

@end

TableViewController.m

#import "Instruments.h"

@interface Instruments ()

@end

@implementation Instruments
@synthesize tabledata;
@synthesize tableView;
@synthesize selectedRow;

- (void)viewDidLoad
{
    [super viewDidLoad];
    tabledata = [[NSArray alloc] initWithObjects:@"Row1", @"Row2", @"Row3", nil];
    self.selectedRow = 0;
}

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

- (UITableViewCell *)tableView:(UITableView *)tableview cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = nil;
    cell = [tableview dequeueReusableCellWithIdentifier:@"Row1"];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Row1"];
    }

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

    if (indexPath.row == self.selectedRow)
    {
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    } else {
        cell.accessoryType = UITableViewCellAccessoryNone;
    }

    return cell;
}

- (void)tableView:(UITableView *)tableview didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row != self.selectedRow) {
        self.selectedRow = indexPath.row;
    }

    [tableView reloadData];
}


- (void)viewDidUnload {
    [self setTableView:nil];
    [super viewDidUnload];
}
@end

FirstViewController.h

//Some code which calls my variable 'selectedrow'
...

FirstViewController.m

...
if selectedrow = 0 {
//some code
}
if selectedrow = 1 {
//some code
}
if selectedrow = 2 {
//some code
}
...

変数 'selectedrow' を FirstViewController で使用できるようにするには、どのように宣言すればよいですか?

4

2 に答える 2

1

MVC の世界では、複数のビュー コントローラー間で共有するものはすべてモデルに属します。モデル クラスはグローバルに利用可能です。1 つのコントローラーが値を設定します。もう一方はそれを読みます。

ヘッダー: MyAppModel.h

@interface MyAppModel // <<<=== Use an appropriate name here
+(MyAppModel*)instance;
@property (readwrite) NSInteger selectedRow;
@end

実装: MyAppModel.m

@implementation MyAppModel
+(MyAppModel*)instance {
    static MyAppModel *statInst;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        statInst = [[MyAppModel alloc] init];
    });
    return statInst;
}
@synthesize selectedRow;
@end

使用法: ビュー コントローラー

// Set the selected row
[MyAppModel instance].selectedRow = indexPath.row;

// Access the last selected row
switch ([MyAppModel instance].selectedRow) {
    case 1: // some code
    break;
    case 2: // some code
    break;
    case 3: // some code
    break;
}
于 2012-10-27T11:46:08.767 に答える
1

あなたがしているのは、クラスの変数を設定することですがTableViewControllerFirstViewController

したがって、TableViewControllerFirstViewController のビューを表示するときに、値も設定します。例えば、

 FirstViewController* newObject = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
 newObject.selectedIndex = self.selectedIndex;   //Here self indicates the present class which is `TableViewController`
 //Now whatever your insertion method.  i.e
 [self.navigationController pushViewController:newObject animated:Yes];
 // or presenting your modal view controller, this depends totally on you.

それが役に立てば幸い!:)

于 2012-10-27T11:49:58.303 に答える