从其他ViewController调用didSelectRowAtIndexPath不响应iPad

时间:2012-01-21 14:31:17

标签: ios uitableview ipad

我想从detailViewController上的按钮更改表格中的选定行(在MasterViewController中)。 我知道我无法调用didSelectRowAtIndexPath因为它是委托方法。我尝试使用selectRowAtIndexPath,但这不会调用didSelectRowAtIndexPathwillSelectRowAtIndexPath方法。正如这里所说, https://stackoverflow.com/a/7496926/1050722可以使用一些新方法,然后从另一个ViewController(detailViewController)调用该方法,但该方法应该如何?

以下是一些代码:

MasterViewController.m

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath   
{
    [self pushDetailViewController:indexPath];
}

-(void)pushDetailViewController:(NSIndexPath *)indexPath
{        
    if (!self.detailViewController) {
        self.detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
    }
    [self.navigationController pushViewController:self.detailViewController animated:YES];
    NSLog(@"pushDetailviewC and index %@", indexPath);
}

DetailViewController.m

-(IBAction)nextItem
{
    MasterViewController *mVc = [[MasterViewController alloc] init];
    [mVc pushDetailViewController:[NSIndexPath indexPathForRow:0 inSection:0]];
}

有人可以举个例子来解决这个问题吗?感谢。

编辑:这是新代码

MasterViewController.m

   - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [self pushDetailViewController:indexPath];

}

-(void)pushDetailViewController:(NSIndexPath *)indexPath{

    if (!self.detailViewController) {
        self.detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
    }
    self.detailViewController.mVc = self;
    [self.navigationController pushViewController:self.detailViewController animated:YES];
    NSLog(@"pushDetailviewC and index %@", indexPath);
}

DetailViewController.h

#import <UIKit/UIKit.h>
#import "MasterViewController.h"

@interface DetailViewController : UIViewController <UISplitViewControllerDelegate, UITableViewDelegate>

@property (strong, nonatomic) id detailItem;
@property (strong, nonatomic) IBOutlet UILabel *detailDescriptionLabel;
@property (nonatomic, retain) MasterViewController *mVc;

DetailViewCOntroller.m

-(IBAction)test{
    //MasterViewController *mVc = [[MasterViewController alloc] init];
    [self.mVc pushDetailViewController:[NSIndexPath indexPathForRow:0 inSection:0]];
}

它不会调用方法的NSLog部分,也不会选择行...

2 个答案:

答案 0 :(得分:12)

根据您的问题,这个答案是iPad特定的。

主版/明细模板的iPad版本使用UISplitViewController两个分割屏幕。此UISplitViewController实例保留对两个导航控制器的引用。其中保留了对最顶层视图控制器的引用。以下是示例代码,除了测试之外不要逐字使用,因为它不包含错误检查

// Picking some arbitrary row 
NSUInteger desiredRow = 3;//???
// The Master navigation controller is at index zero in the template, you can check in your app delegate's didFinishLaunching: method
UINavigationController *masterController = [self.splitViewController.viewControllers objectAtIndex:0];
// Next we want a reference to the topmost viewController again you shouldn't assume it's a UITableViewController
UITableViewController *tableController = (UITableViewController *)masterController.visibleViewController;
// Next we get the reference to the tableview in-question
UITableView *tableView = tableController.tableView;
// We translate our desired row to an index path
NSIndexPath *path = [NSIndexPath indexPathForRow:desiredRow inSection:0];
// We select the row , again this will not call didSelectRowAtIndexPath:
[tableView selectRowAtIndexPath:path animated:YES scrollPosition:UITableViewScrollPositionNone];
// We call didSelectRowAtIndexPath: on the tableview's delegate
[tableView.delegate tableView:tableView didSelectRowAtIndexPath:path];

当我将此代码放入详细视图控制器中的IBAction方法时,链接按钮执行相应的操作,两者都选择行并推送VC,就像我通过触摸选择了行一样。

答案 1 :(得分:3)

DetailViewController.h中向对象添加一个指向MasterViewController的属性。您还需要导入MasterViewController.h,如

#import“MasterViewController”

...

@property(非原子,保留)MasterViewController * mVc;

...

请勿忘记DetailViewController.m@synthesize mVc;

现在在pushDetailViewController中添加一个引用以加入两个对象

if (!self.detailViewController) {
    self.detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
}
[self.detailViewController.mVc = self]; // New line
[self.navigationController pushViewController:self.detailViewController animated:YES];

然后在DetailViewController中引用对象

-(IBAction)nextItem{
[self.mVc pushDetailViewController:[NSIndexPath indexPathForRow:0 inSection:0]];
}  

我认为您遇到的另一个问题是每次单击nextItem按钮时都会分配新版本的mVC。 IOS很乐意让你制作很多MasterViewController对象,并在每次alloc时创建一个新对象。您只想获得原始MasterViewController的句柄 另一种方法是使用parent方法探索引用MasterViewController。但我想告诉你如何使用显式属性来做这件事,因为我认为它会更清楚。

此外,这可能会或可能不会解决您的所有问题,但希望至少能告诉您如何与实际的MasterViewController对话。