- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想以编程方式将自定义类 (MyClass
) 数组绑定(bind)到数组 Controller (NSArrayController
),并将其内容绑定(bind)到另一个数组 (modelArray
)。 MyClass
显示数组的内容,就像 NSTableView
一样。
我的问题是:如何以调用可变数组的方法(即方法)的方式创建此绑定(bind)
-(void) insertObject:(id)object inContentAtIndex:(NSUInteger)index
-(void) removeObjectFromContent:(id) object
(1) 如果我以这种方式绑定(bind),则会调用上述方法,但 Controller 的内容不再绑定(bind)到 modelArray
(显然)
[myArrayController bind:@"contentArray" toObject:myClassInstance withKeyPath:@"content" options:nil];
(2) 如果我以这些方式绑定(bind),则仅调用 setContent:
和 content
方法,而不调用可变方法。另外,我尝试删除这些方法(setContent:
和 content
),但它只会引发异常 setValue:forUndefinedKey:
[myClassInstance bind:@"content" toObject:myArrayController withKeyPath:@"arrangedObjects" options:nil];
或
[myClassInstance bind:@"content" toObject:myArrayController withKeyPath:@"content" options:nil];
我不相信在绑定(bind)到数组 Controller 时每次添加一行时都会重新设置整个表的数组,并且我希望有相同类型的绑定(bind)。
最佳答案
您遇到的问题与键值编码如何处理数组值有关。 KVC 没有特定类型的概念,因此当您通过 KVC 访问数组值时,它无法知道返回的数组是可变的。它必须假设最坏的情况(即数组是不可变的)。它通常处理这个问题的方式是使用一个代理对象,它的作用类似于 NSMutableArray,但在幕后它会获取假定的不可变数组,创建一个可变副本,改变副本,然后推送整个副本回到使用 setter 的事情。 (这是您所看到的行为 - 整个数组被替换而不是就地突变。)
控制此功能的方法是 - (NSMutableArray *)mutableArrayValueForKey:(NSString *)key
。该方法中可能会发生很多事情,我将在下面粘贴该方法的标题注释以给出完整的故事,但长话短说,如果您希望 NSArrayController 就地改变可变数组,最简单的方法是将此覆盖添加到提供 modelArray
的类中属性:
- (NSMutableArray *)mutableArrayValueForKey:(NSString *)key
{
if ([@"modelArray" isEqual: key])
{
// We know this is mutable, even if KVC doesn't!
return self.modelArray;
}
return [super mutableArrayValueForKey:key];
}
更长的故事是,KVC 在尝试弄清楚如何处理集合突变时会寻找一系列的事情。 NSKeyValueCoding.h
中详细解释了它们。 。这些是 mutableArrayValueForKey:
的评论.
Given a key that identifies an ordered to-many relationship, return a mutable array that provides read-write access to the related objects. Objects added to the mutable array will become related to the receiver, and objects removed from the mutable array will become unrelated.
The default implementation of this method recognizes the same simple accessor methods and array accessor methods as -valueForKey:'s, and follows the same direct instance variable access policies, but always returns a mutable collection proxy object instead of the immutable collection that -valueForKey: would return. It also:
- Searches the class of the receiver for methods whose names match the patterns
-insertObject:in<Key>AtIndex:
and-removeObjectFrom<Key>AtIndex:
(corresponding to the two most primitive methods defined by the NSMutableArray class), and (introduced in Mac OS 10.4) also-insert<Key>:atIndexes:
and-remove<Key>AtIndexes:
(corresponding to-[NSMutableArray insertObjects:atIndexes:]
and-[NSMutableArray
). If at least one insertion method and at least one removal method are found each NSMutableArray message sent to the collection proxy object will result in some combination of
removeObjectsAtIndexes:]-insertObject:in<Key>AtIndex:
,-removeObjectFrom<Key>AtIndex:
,-insert<Key>:atIndexes:
, and-remove<Key>AtIndexes:
messages being sent to the original receiver of-mutableArrayValueForKey:
. If the class of the receiver also implements an optional method whose name matches the pattern-replaceObjectIn<Key>AtIndex:withObject:
or (introduced in Mac OS 10.4)-replace<Key>AtIndexes:with<Key>:
that method will be used when appropriate for best performance.- Otherwise (no set of array mutation methods is found), searches the class of the receiver for an accessor method whose name matches the pattern
-set<Key>:
. If such a method is found each NSMutableArray message sent to the collection proxy object will result in a-set<Key>:
message being sent to the original receiver of-mutableArrayValueForKey:
.- Otherwise (no set of array mutation methods or simple accessor method is found), if the receiver's class'
+accessInstanceVariablesDirectly
method returns YES, searches the class of the receiver for an instance variable whose name matches the pattern_<key>
or<key>
, in that order. If such an instance variable is found, each NSMutableArray message sent to the collection proxy object will be forwarded to the instance variable's value, which therefore must typically be an instance of NSMutableArray or a subclass of NSMutableArray.- Otherwise (no set of array mutation methods, simple accessor method, or instance variable is found), returns a mutable collection proxy object anyway. Each NSMutableArray message sent to the collection proxy object will result in a
-setValue:forUndefinedKey:
message being sent to the original receiver of-mutableArrayValueForKey:
. The default implementation of-setValue:forUndefinedKey:
raises an NSUndefinedKeyException, but you can override it in your application.
关于cocoa - 如何绑定(bind)到NSArrayController的排列对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12010360/
我是 Mac OS X 开发新手。在 XCode/Cocoa 开发环境中,每个 Objective-C 项目都以 开始 #import 它工作正常,但我对 Cocoa.h 文件位置感到困惑。我的文件
所以我开始阅读这本书: http://www.amazon.com/Cocoa-Design-Patterns-Erik-Buck/dp/0321535022 第 2 章解释了 MVC 设计模式,并给
我使用下面的代码来访问项目中的变量 appDelegate =(AppDelegate *)[[UIApplication sharedApplication] delegate]; UIApplic
我想从我的表格 View 中拖动一行并将其放入 Mac OS X 10.6 中的任何其他 NSTextField 中,并放置一串文本。 拖放已经在我的应用程序中工作(在 NSTableView 和 N
如何在另一个窗口中加载 Nib ? 我尝试了 initWithWindowName, if (mmController == NULL) mmController = [[mainMenu a
其中一个类使用#import 。所以,在我的Podspec ,我包括 framework Cocoa 我的Podspec是 Pod::Spec.new do |s| s.name
有没有可以让我创建简单的条形图和折线图的框架? 最佳答案 有更新的开源Core Plot。 关于cocoa - cocoa :创建图表,我们在Stack Overflow上找到一个类似的问题: htt
如何从 SIMBL 插件获取主应用程序中的单例?当我尝试调用诸如 [ProcessControl sharedInstance] 之类的内容时,我收到一条错误,指出 ProcessControl 未定
我正在尝试从我的 cocoa 应用程序(通过使用 Mail.app)发送电子邮件中的一些文本。最初我尝试使用 HTML 发送格式正确的文本。但 mailto: URL 不支持 html 标签(即使在设
我正在创建一个应用程序,该应用程序必须与服务器数据交互,然后相应地显示数据库中的结果。我正在用 Cocoa 编写客户端应用程序。 示例:用户登录到 Web 应用程序。他们有一些提交网络报告的选项。选项
我想创建一个可以在多个应用程序中使用的框架(如 coreData、CoreAudio 等)。 任何人都可以发布此链接或教程... 最佳答案 尝试苹果的 Framework Programming Gu
我正在使用 [[NSFontManager sharedFontManager] collectionNames] 获取所有集合,但我看到一些未翻译的字符串(例如“com.apple.AllFonts
我刚刚开始我的 cocoa 教育,我有一个简单的问题,我看到单击一个单词并使用 mac 文本转语音功能的能力表明文本是自动内置的。 (即 - 对于 hello world 应用程序,您可以单击 hel
我需要在加密中实现盐,但要做到这一点,我需要将其存储为我需要创建的文件格式,以便稍后检索它进行解密。在加密方面我是个菜鸟。文件格式规范如下: 密文:密文长度;salt:盐的长度; 然后将密文和盐写出来
有没有办法在Cocoa中以任意的能力创建贝塞尔路径?例如,对于我的应用程序的一部分,我需要一个起伏的单元格。因此,我想使用 10 到 50 个不同的点绘制一条曲线,形成一个循环。这些点将随机波动。我认
我想将声音存储在用户默认值中。既然我们不能直接存储语音,那么存储它的最佳方式是什么?安装新语音后,使用数组 [NSSpeechSynthesizer availableVoices] 中的索引可能会有
我一直在寻找解决方案,但不知道是否可以执行以下操作: 我有一个drawRect方法,我想要做的是将图形元素(例如矩形和线条)添加到当前 View 而不刷新它。我曾经调用 setNeedsDisplay
美好的一天! 我正在为 Mac OS X(不是 iPhone)开发提醒软件。它应该一天一次显示一个窗口。具体时间没有规定,只是一次。我怎样才能做到呢。它会自行注册以在登录后启动。我已经尝试过 NSTi
我只是想知道是否可以创建具有层次结构的下拉或弹出菜单?我目前正在开发的应用程序跟踪作业、类(class)和主题。当用户创建作业时,他们需要能够从下拉列表中选择它所属的类(class),但我也不希望通过
是否有任何 Cocoa Widget 可以用来构建典型的(除了 Interface Builder 中的)GUI 构建器属性检查器,例如 RealBasic 或 Delphi? 是否有一个网站列出了其
我是一名优秀的程序员,十分优秀!