双击 NSTableView 中的行不显示新视图

Double click on row in NSTableView doesn't display the new view

我有一个使用核心数据的 os x 应用程序。

我的应用程序中有 3 个 .xib 文件,os它们是:

1. MainMenu.xib
2. MasterTableViewController.xib 
3. DetailViewController.xib  

启动时,应用会显示一个包含 NSTableView 的视图,其中包含几条记录。

我将该视图命名为 MasterTableViewController

我希望当用户双击该行时,隐藏 "master" 视图并显示我的 "detail" 视图。我将该视图命名为 DetailViewController。

当在 "master" 视图中双击 NSTableView 中的行时,没有任何反应,"master" 视图仍然可见。我想要的是 "master" 视图消失,"detail" 视图出现。

这是我现在的代码,更多解释如下:

AppDelegate.h

#import <Cocoa/Cocoa.h>

@interface AppDelegate : NSObject <NSApplicationDelegate>

    @property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator;
    @property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel;
    @property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext;


    @property (nonatomic,strong) NSViewController *mainAppViewController;
    @property (weak) IBOutlet NSView *mainAppView;
    - (void)changeViewController:(NSInteger)tag;

    @property (weak) IBOutlet NSTableView *websitesTableView;
    - (void)tableViewDoubleClick:(id)nid;

@end

AppDelegate.m

#import "AppDelegate.h"
#import "MasterTableViewController.h"
#import "DetailViewController.h"
@interface AppDelegate ()

    @property (weak) IBOutlet NSWindow *window;
    - (IBAction)saveAction:(id)sender;

@end

@implementation AppDelegate

    NSString *const masterTable = @"MasterTableViewController";
    NSString *const detail = @"DetailViewController";


    -(void)awakeFromNib {   
        [_websitesTableView setTarget:self];
        [_websitesTableView setDoubleAction:@selector(tableViewDoubleClick:)];
    }

    - (void)tableViewDoubleClick:(id)nid {
        NSInteger rowNumber = [_websitesTableView clickedRow];
        NSTableColumn *column = [_websitesTableView tableColumnWithIdentifier:@"websiteUrl"];
        NSCell *cell = [column dataCellForRow:rowNumber];

        NSInteger tag = 2;
        [self changeViewController:tag];
    }

    - (void)changeViewController:(NSInteger)tag {

        [[_mainAppViewController view]removeFromSuperview];  
        switch (tag) {
            case 1:
                self.mainAppViewController = [[MasterTableViewController alloc]initWithNibName:masterTable bundle:nil];
            break;

            case 2:
                self.mainAppViewController = [[DetailViewController alloc]initWithNibName:detail bundle:nil];
            break;

         }

    [_mainAppView addSubview:[_mainAppViewController view]];
    [[_mainAppViewController view] setFrame:[_mainAppView bounds]];
    [[_mainAppViewController view] setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];

    }


    - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
        // automatically run the master table view controller
        NSInteger tag = 1;
        [self changeViewController:tag];
    }

现在,有些人可能想知道,其余代码在哪里。我在 AppDelegage.m 中省略了下面核心数据的样板代码,因为它没有变化。我使用绑定使我的 NSTableView 工作并显示我的记录,所以 MasterTableViewController.h 和 .m 文件是空的,DetailViewController.h 和 .m 文件也是如此。

重要说明 - 我在这里无法理解的地方: 如果我在 applicationDidFinishLaunching 方法中更改 2 中的标签,详细视图会正常显示,但如果我将其切换回来在 1 上,然后双击该行,"master" 视图(使用 NSTableView)保持可见,并且没有任何反应(视图未交换)

谁能帮我找出我的代码有什么问题?

此致,约翰

您显然在 MasterTableViewController.xib 文件中实例化了 AppDelegate class 的第二个实例。应该只有一个 AppDelegate 个实例,那就是 MainMenu.xib 中的那个。所以,它不应该在 MasterTableViewController.xib.

其中一个实例从 table 接收双击操作方法,但另一个是主电源插座 window。

您需要(编辑)摆脱第二个实例并找到另一种方式从 MasterTableViewController 访问应用程序委托。