Do you have an old, unfixed version of your nib in version control
somewhere? (The answer should be "yes;" if not, you might want to
reconsider your approach to version control for the sake of your own
sanity.)
If so, do the same thing you did, confirm that it causes the same
problem, and
On 22 Dec 2009, at 16:20, Jerry Krinock wrote:
> On 2009 Dec 21, at 21:05, Gerriet M. Denkmann wrote:
>
>> But when I use:
>> [ arrayController1 setFilterPredicate: "aValue BEGINSWITH[n] "a" AND ANY
>> theBs.bValue == "xx""];
>> I get an exeption:
>>
>> HIToolbox: ignoring exception '[<_NSFau
On 22 Dec 2009, at 13:38, Graham Cox wrote:
>
> On 22/12/2009, at 4:05 PM, Gerriet M. Denkmann wrote:
>
>> When later I reset the filterPredicates back to the simple (working) mode, I
>> get another exception:
>> HIToolbox: ignoring exception 'Cannot remove an observer
>> for the key path "t
On 22/12/2009, at 4:05 PM, Gerriet M. Denkmann wrote:
> When later I reset the filterPredicates back to the simple (working) mode, I
> get another exception:
> HIToolbox: ignoring exception 'Cannot remove an observer
> for the key path "theBs.bValue" from because it is not
> registered as an
On 2009 Dec 21, at 21:05, Gerriet M. Denkmann wrote:
> But when I use:
> [ arrayController1 setFilterPredicate: "aValue BEGINSWITH[n] "a" AND ANY
> theBs.bValue == "xx""];
> I get an exeption:
>
> HIToolbox: ignoring exception '[<_NSFaultingMutableSet 0x1001f5d00>
> addObserver:forKeyPath:opti
Core Data model with two entities: A and B.
A has property aValue and a relation theBs to one or more Bs.
B has a property bValue.
Two NSTableViews (tabelView1 and tableView2 ) with each controlled by an
NSArrayController (arrayController1 and arrayController2).
Everything works fine when I se