On Jul 12, 2010, at 1:14 PM, Oftenwrong Soong wrote:
> My managed classes need non-standard persistent attributes, such as CGPoint.
> Possibly, I'll need other C structs or enums as well.
>
> The Core Data Programming Guide section about non-standard persistent
> attributes
> (link below) says
My managed classes need non-standard persistent attributes, such as CGPoint.
Possibly, I'll need other C structs or enums as well.
The Core Data Programming Guide section about non-standard persistent
attributes
(link below) says there are two ways to go about this: transformable attributes
an
On Oct 11, 2009, at 9:20 AM, Gustavo Pizano wrote:
Thanks for the link, I will then see the example and try to
understand these bindings better, I thought they were something
similar as in WO-EOF, but its seems lot of things changed here.
You might want to search the list archives for rel
I.
Thanks for the link, I will then see the example and try to understand
these bindings better, I thought they were something similar as in WO-
EOF, but its seems lot of things changed here.
I dunno what will be more difficult, if make an IB plugin or set the
bindings by code, ( I guess t
On Oct 11, 2009, at 6:00 AM, Gustavo Pizano wrote:
but I can't set the Key Model and key path to something to work..
Let's forget about the drag and drop part for now and simplify the
problem.
You said earlier:
I have a window with 2 custom views, each view with their
corresponding
>
> I want to achieve is that from the first list in the first view, I can do a
> drag and drop to the second view, and once dropped I want to show the data,
> so first I was trying setting the selected item directly, into the second
> view, and having a NSIObjectController in that second nib, that
Matthew hello:
Well I have developed some cocoa apps, and I have a medium background
on WebObjects, so EO and WO uses bindings also, so even some things
are different the binding theory its quite similar. (ie, KVC)
I read the Core Data programing guide, and well I found lot;'s of
similar
Hi Gustavo,
I'm no expert but one way is for the second controller's Content Array or
Content Set to be bound to some property of the first controller's
selection.
For example if you have an entity "Foo" with a to-many relationship called
"bars" you would:
- bind the "content set" of bars array c
Hello.
I have a window with 2 custom views, each view with their
corresponding controller.
Now on view one I have a list of users, this list its coming from core
data, now in the list when I select one element I want in the other
view show the detailed information about what the user select