English 中文(简体)
a. 具有方案约束力,+不更新价值?
原标题:Cocoa binding programmatically + not updating value?

我有一个习惯类别(NSView下级——实际上请说经过修改的编辑,但NOT有一个子级的<代码>NSTextView),I m对<代码>具有约束力。 NSArrayController Programally (I mostfin canNOT do it through Interface Buildinger),如:

[myEditor bind:@"string" 
     toObject:myController 
  withKeyPath:@"selection.content" 
      options:nil];

然而,在价值发生变化时,上述数值已更新到我的<条码>NSArrayController,即与“标准”一样。

我甚至使用以下<代码>options,但没有结果:

NSDictionary* options = [NSDictionary dictionaryWithObjectsAndKeys:
                         [NSNumber numberWithBool:YES],NSContinuouslyUpdatesValueBindingOption, 
                         [NSNumber numberWithBool:YES],NSAllowsEditingMultipleValuesSelectionBindingOption,
                         [NSNumber numberWithBool:YES],NSConditionallySetsEditableBindingOption,
                         [NSNumber numberWithBool:YES],NSRaisesForNotApplicableKeysBindingOption,
                         nil];

任何想法?

最佳回答

一类人必须支持具有约束力的文书。 Coco的观点和小组班一般实施一套特定的约束。 习俗等级是否由执行者决定。

如果某类斜线对具有约束力的具体支持,则<代码>-bind:请求通过NSObject执行。 然而,这种执行非常有限。 它沿用了有名望的<>主计长>的关键道路,并通过KVC更新了姓名与约束力相同的接收人的财产。 但是,它确实是<>而不是。 也就是说,接收人的财产变更不会通过关键途径转给观察员。

以你的榜样,使这一点不那么抽象。 如果<代码>myEditor的类别未具体落实对具有约束力的“string”的支持,那么NSObject/code>的执行将达到[myController Add Observer:< Some private Observer Object> forKeyPath:@“selection.content” Options:<...> context:<...>]

当私人观察员物体收到更改通知时,它将填写[myEditor setValue:[myController Value forKeyPath:@“selection.content”] forKey:@“string”]

然而,NSObject将不试图遵守myEditors “string” property ,也从未打上[myController setValue:<...> forKeyPath:@'selection.content”

To learn more about how to implement support for a binding, see Apple s documentation.

问题回答

暂无回答




相关问题
Asynchronous request to the server from background thread

I ve got the problem when I tried to do asynchronous requests to server from background thread. I ve never got results of those requests. Simple example which shows the problem: @protocol ...

objective-c: Calling a void function from another controller

i have a void, like -(void) doSomething in a specific controller. i can call it in this controller via [self doSomething], but i don t know how to call this void from another .m file. I want to call ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

NSUndoManager and runModalForWindow:

I have a simple Core Data app which displays a list of entities in the main window. To create or add new entities, I use a second modal window with a separate managed object context so changes can be ...

NSMutableArray values becoming "invalid"

I m trying to show a database information in a tableview and then the detailed information in a view my problem is as follow: I created a NSMutableArray: NSMutableArray *myArray = [[NSMutableArray ...

iPhone numberpad with decimal point

I am writing an iPhone application which requires the user to enter several values that may contain a decimal point (currency values, percentages etc.). The number of decimal places in the values ...