Re: More IB constraints woes

2013-03-03 Thread Uli Kusterer
There's a grey capsule-ish thing in the lower right of the window. It looks like a segmented control, but is actually a group of popups with the auto layout stuff. One of them controls whether resizing the window should affect any subviews or leave them in place. Just toggle that and you should

Re: move large data structure to Core Data?

2013-03-03 Thread Uli Kusterer
Just a question: Do you really *need* NSDictionaries? I.e. is this something where arbitrary string keys need to be mapped to objects? Because otherwise this might be one of the cases where NSDictionary is too generic, and you may just want to create your own class. E.g. when I started out, I

Re: More IB constraints woes

2013-03-03 Thread Rick Mann
On Mar 3, 2013, at 01:42 , Uli Kusterer witness.of.teacht...@gmx.net wrote: There's a grey capsule-ish thing in the lower right of the window. It looks like a segmented control, but is actually a group of popups with the auto layout stuff. One of them controls whether resizing the window

Short Tutorial on Collection Views

2013-03-03 Thread Gordon Apple
In your nib, drag in a collection view. This will also get you a collection view item and a prototype view, already connected together. Ser the number of rows/columns for the collection view. Bind your collection view to an array controller. Bind the latter to your array of objects, each

Re: move large data structure to Core Data?

2013-03-03 Thread James Maxwell
Hi Uli, Thanks for the thoughtful reply. I do think I could probably reduce the data load of my graph by wider use of primitives, but it would require a fair bit of re-engineering, and there's not a lot of time to do that… (Have to finish my PhD someday!) Also, since the system should, at

Re: 2 icons showing in dock

2013-03-03 Thread Jerry Krinock
On 2013 Feb 28, at 15:22, Rick C. rickcort...@gmail.com wrote: You're having the same issue? FWIW I moved it to applicationWillFinishLaunching and changed it to NSApplication activation policy and I see no difference in the behavior. I think that transforming to a foreground process is

Re: 2 icons showing in dock

2013-03-03 Thread Rick C.
@Rob - yes I'm able to reproduce it. Still an issue running all the latest... @Jerry - yes I think it's directly related to transforming the app. Unfortunately I really want this behavior in my app so removing it creates other issues :-) On Mar 4, 2013, at 7:08 AM, Jerry Krinock

Re: 2 icons showing in dock

2013-03-03 Thread Kyle Sluder
On Mar 3, 2013, at 4:13 PM, Rick C. rickcort...@gmail.com wrote: @Rob - yes I'm able to reproduce it. Still an issue running all the latest... @Jerry - yes I think it's directly related to transforming the app. Unfortunately I really want this behavior in my app so removing it creates

Re: 2 icons showing in dock

2013-03-03 Thread Rob McBroom
On Mar 3, 2013, at 9:18 PM, Kyle Sluder k...@ksluder.com wrote: On Mar 3, 2013, at 4:13 PM, Rick C. rickcort...@gmail.com wrote: @Rob - yes I'm able to reproduce it. Still an issue running all the latest... @Jerry - yes I think it's directly related to transforming the app.