我在带有SplitView控制器的OS X cocoa应用程序项目中使用storyboard,另外还有2个视图控制器LeftViewController和RightViewController。
在LeftViewController中,我有一个显示名称数组的tableView。 tableview的数据源和委托是LeftViewController。
在RightViewController中,我只有一个居中的标签,显示选择名称。我想在右侧视图中显示左侧视图中选择的名称。
要配置2个视图控制器之间的通信,我使用AppDelegate并为AppDelegate.h中的每个控制器定义2个属性 使用下面的NSInvocation在视图控制器的viewDidLoad中初始化2属性:
@implementation RightViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
id delg = [[NSApplication sharedApplication] delegate];
SEL sel1 = NSSelectorFromString(@"setRightViewController:");
NSMethodSignature * mySignature1 = [delg methodSignatureForSelector:sel1];
NSInvocation * myInvocation1 = [NSInvocation
invocationWithMethodSignature:mySignature1];
id me = self;
[myInvocation1 setTarget:delg];
[myInvocation1 setSelector:sel1];
[myInvocation1 setArgument:&me atIndex:2];
[myInvocation1 invoke];
}
我在LeftViewController中也一样。
然后,如果我在表视图中单击一个名称,我会向参数中的名称发送一条消息,并且委托更新具有给定名称的RightViewController的标签。它工作正常,但根据苹果的最佳实践,它并不好。
是否有另一种方式在故事板内的2个视图控制器之间进行通信?
我已经阅读了很多帖子,但没有为OS X找到任何内容。
您可以在此处下载简单项目:http://we.tl/4rAl9HHIf1
答案 0 :(得分:1)
这是应用程序体系结构(如何传递数据)的更高级主题。
NSNotification
和忘记的representedObject
一起发布:所有NSViewController都有一个名为representedObject
的id类型的好属性。这是将数据传递到NSViewController
的方式之一。将标签绑定到该属性。对于这个简单的示例,我们将为representedObject
设置一些NSString instance
。您也可以使用复杂的对象结构。有人可以在评论中解释为什么情节提要板停止显示representedObject
(快速输入安全性?)
接下来,我们添加通知观察器,并在处理程序中设置代表对象。
@implementation RightViewController
- (void)viewDidLoad
{
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserverForName:@"SelectionDidChange" object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification * _Nonnull note) {
//[note object] contains our NSString instance
[self setRepresentedObject:[note object]];
}];
}
@end
左视图控制器及其表: 选择更改后,我们将使用字符串发布通知。
@interface RightViewController () <NSTableViewDelegate, NSTableViewDataSource>
@end
@implementation RightViewController
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView
{
return [[self names] count];
}
- (nullable id)tableView:(NSTableView *)tableView objectValueForTableColumn:(nullable NSTableColumn *)tableColumn row:(NSInteger)row
{
return [self names][row];
}
- (NSArray<NSString *>*)names
{
return @[@"Cony", @"Brown", @"James", @"Mark", @"Kris"];
}
- (void)tableViewSelectionDidChange:(NSNotification *)notification
{
NSTableView *tableView = [notification object];
NSInteger selectedRow = [tableView selectedRow];
if (selectedRow >= 0) {
NSString *name = [self names][selectedRow];
if (name) {
[[NSNotificationCenter defaultCenter] postNotificationName:@"SelectionDidChange" object:name];
}
}
}
PS:别忘了钩住tableview数据源并在情节提要中委派
为什么此解决方案很脏?因为一旦您的应用增长,您最终将进入通知地狱。还以数据所有者的身份查看控制器吗?我希望窗口控制器/ appdelegate成为模型所有者。
结果:
我们的左视图控制器将从AppDelegate
获取数据。 AppDelegate
控制数据流并设置数据很重要(不是视图控制器询问AppDelegate
这是表内容,因为这会导致数据同步混乱)。我们可以使用representedObject
再次执行此操作。设置好后,我们重新加载表(还有更高级的解决方案,例如NSArrayController和绑定)。不要忘记将tableView钩在情节提要中。我们还修改了tableview的委托方法the tableViewSelectionDidChange
来修改我们的模型对象(AppDelegate.selectedName)
#import "LeftViewController.h"
#import "AppDelegate.h"
@interface LeftViewController () <NSTableViewDelegate, NSTableViewDataSource>
@property (weak) IBOutlet NSTableView *tableView;
@end
@implementation LeftViewController
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView
{
return [[self representedObject] count];
}
- (nullable id)tableView:(NSTableView *)tableView objectValueForTableColumn:(nullable NSTableColumn *)tableColumn row:(NSInteger)row
{
return [self representedObject][row];
}
- (void)setRepresentedObject:(id)representedObject
{
[super setRepresentedObject:representedObject];
//we need to reload table contents once
[[self tableView] reloadData];
}
- (void)tableViewSelectionDidChange:(NSNotification *)notification
{
NSTableView *tableView = [notification object];
NSInteger selectedRow = [tableView selectedRow];
if (selectedRow >= 0) {
NSString *name = [self representedObject][selectedRow];
[(AppDelegate *)[NSApp delegate] setSelectedName:name];
} else {
[(AppDelegate *)[NSApp delegate] setSelectedName:nil];
}
}
在RightViewController
中,我们删除所有代码。为什么?因为我们将使用绑定AppDelegate.selectedName <-->
RightViewController.representedObject
@implementation RightViewController
@end
最后AppDelegate
。它需要公开一些属性。有趣的是,如何使用所有控制器?一种方法(最好)是实例化我们自己的窗口控制器,并将其记为属性。另一种方法是向NSApp询问其Windows(在此处使用多窗口应用程序要小心)。从那里,我们只要求contentViewController并遍历childViewControllers。一旦有了控制器,我们就可以设置/绑定代表的对象。
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (nonatomic) NSString *selectedName;
@property (nonatomic) NSMutableArray <NSString *>*names;
@end
#import "AppDelegate.h"
#import "RightViewController.h"
#import "LeftViewController.h"
@interface AppDelegate () {
}
@property (weak, nonatomic) RightViewController *rightSplitViewController;
@property (weak, nonatomic) LeftViewController *leftSplitViewController;
@property (strong, nonatomic) NSWindowController *windowController;
@end
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
_names = [@[@"Cony", @"Brown", @"James", @"Mark", @"Kris"] mutableCopy];
_selectedName = nil;
NSStoryboard *storyboard = [NSStoryboard storyboardWithName:@"Main"
bundle:[NSBundle mainBundle]];
NSWindowController *windowController = [storyboard instantiateControllerWithIdentifier:@"windowWC"];
[self setWindowController:windowController];
[[self windowController] showWindow:nil];
[[self leftSplitViewController] setRepresentedObject:[self names]];
[[self rightSplitViewController] bind:@"representedObject" toObject:self withKeyPath:@"selectedName" options:nil];
}
- (RightViewController *)rightSplitViewController
{
if (!_rightSplitViewController) {
NSArray<NSViewController *>*vcs = [[[self window] contentViewController] childViewControllers];
for (NSViewController *vc in vcs) {
if ([vc isKindOfClass:[RightViewController class]]) {
_rightSplitViewController = (RightViewController *)vc;
break;
}
}
}
return _rightSplitViewController;
}
- (LeftViewController *)leftSplitViewController
{
if (!_leftSplitViewController) {
NSArray<NSViewController *>*vcs = [[[self window] contentViewController] childViewControllers];
for (NSViewController *vc in vcs) {
if ([vc isKindOfClass:[LeftViewController class]]) {
_leftSplitViewController = (LeftViewController *)vc;
break;
}
}
}
return _leftSplitViewController;
}
- (NSWindow *)window
{
return [[self windowController] window];
}
//VALID SOLUTION IF YOU DON'T INSTANTIATE STORYBOARD
//- (NSWindow *)window
//{
// return [[NSApp windows] firstObject];
//}
@end
PS:如果您实例化自己的窗口Controller,请不要忘记从Storyboard中删除初始控制器
为什么这样更好?导致所有更改都转移到模型,并且模型发送触发器以重绘视图。另外,您最终将使用较小的视图控制器。
还有什么可以做的呢? NSObjectController
是模型对象和视图之间的最佳粘合剂。它还可以防止绑定有时会发生的保留周期(更高级的主题)。 NSArrayController
等等...
注意事项:不是XIB的解决方案
答案 1 :(得分:-1)
我设法通过在AppDelegate.m中添加以下代码来获得我想要的东西:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
//
NSStoryboard *storyboard = [NSStoryboard storyboardWithName:@"Main"
bundle:[NSBundle mainBundle]];
self.windowController = [storyboard instantiateControllerWithIdentifier:@"windowController"];
self.window = self.windowController.window;
self.splitViewController = (NSSplitViewController*)self.windowController.contentViewController;
NSSplitViewItem *item0 = [self.splitViewController.splitViewItems objectAtIndex:0];
NSSplitViewItem *item1 = [self.splitViewController.splitViewItems objectAtIndex:1];
self.leftViewController = (OMNLeftViewController*)item0.viewController;
self.rightViewController = (OMNRightViewController*)item1.viewController;
[self.window makeKeyAndOrderFront:self];
[self.windowController showWindow:nil];
}
我们还需要编辑storyboard NSWindowController对象,如下所示:
取消选中“Is Initial controller”复选框,因为我们在AppDelegate.m中以编程方式添加它。
现在左右视图可以进行通信。只需在OMNLeftViewController.h中定义一个名为rightView的属性:
self.leftViewController.rightView = self.rightViewController;