Re: Getting notified of any change to a specific NSManagedObject?

2012-11-16 Thread Dave Reed
On Nov 16, 2012, at 12:37 PM, Kyle Sluder wrote: > On Nov 16, 2012, at 9:29 AM, davel...@mac.com wrote: > >> >> On Nov 15, 2012, at 8:22 PM, Rick Mann wrote: >> >>> >>> On Nov 15, 2012, at 17:04 , Kyle Sluder wrote: >>> Override -didChangeValueForKey:? >>> >>> Apparently we are strong

Re: predicates and sort descriptors for NSFetchRequest - documentation is a bit vague

2011-12-14 Thread Dave Reed
On Dec 14, 2011, at 12:32 PM, Keary Suska wrote: > On Dec 14, 2011, at 9:46 AM, davel...@mac.com wrote: > >> >> I have a fetch request with sort descriptors that was sorting on a many-one >> relationship (i.e., I'm fetching Entity A which has a relationship to one >> entity B and I was trying

Re: NSSearchfield help

2011-02-10 Thread Dave Reed
On Feb 9, 2011, at 9:44 PM, lorenzo7...@gmail.com wrote: > I have a NSTableView populated by an NSArrayController. Above the table, I > have an NSToolbar, to which I would like add the ability to search. I have > found a couple of examples of implementing search using an NSSearchField, but > t

Re: Escape in NSTableView cell

2011-02-07 Thread Dave Reed
On Feb 7, 2011, at 9:49 AM, Ivan C Myrvold wrote: > I have developed an application with a table view and text edit cell. When I > press escape from a table view cell, I want the cell to lose focus and end > editing. Instead I get a list of words in the cell. See picture at > http://www.myrvol

printing a different representation than what is on the screen

2011-01-20 Thread Dave Reed
I'm working on a document-based application that has a couple tabs. Most of the tabs contain NSTableViews, NSTextFields, etc. I want to provide a way for the user to print the data contained in them (just text, possibly with some grid lines), but not the actual table view. I've read through (a

Re: Xcode 3.23 broke my code signing

2010-04-15 Thread Dave Reed
On Apr 14, 2010, at 9:25 PM, Steve Mykytyn wrote: > Project that built fine for weeks fails to pass validation, won't run when > installed. > > Ran Xcode uninstall, reinstalled from scratch, same deal. > > Other than randomly trying stuff, does anyone have a known working procedure > for fixi

Re: drag & drop / re-ordering

2010-03-22 Thread Dave Reed
Another place to look is: http://www.red-sweater.com/blog/274/a-moveable-beast Daniel Jalkut (Red Sweater is his company) wrote an NSArrayController subclass that supports re-ordering of an NSTableView and released it under an open source license. I've used it for a couple hobby projects of mi