Barry Wark

11,260
Reputation
568 views

Registered User

Name Barry Wark
Member for 1 year
Seen 25 mins ago
Website
Location Seattle, WA
Age 29
Founder of Physion Consulting LLC and PhD candidate in Neurobiology and Behavior at the University of Washinton.
19m
comment BaseTen Framework newbie question
Not the answer you want, but if you're just learning Cocoa, starting with BaseTen, which is an API-level port of Core Data for PostgreSQL is going to be painful. Apple's docs list Core Data as an "advanced" Cococa framework. Grokking Core Data depends on grokking many Cocoa idioms and patterns. BaseTen is yet one more layer. My advice: wait for the Hillegas book and work through it. Then start on Core Data/BaseTen.
19h
comment more detailed information about the exception in xcode
The exception gives you a selector name. Looking up that selector in the API documentation is usually a good place to start.
19h
answered How to stub a class method in OCMock?
1d
comment Quicksort to order array by business key?
Perhaps you refer to the convenience factory method for NSSorDescriptor, whihc arrived in 10.6? Just replace it with the equivalent alloc/initWithKey:ascending:/autorelease.
1d
comment Quicksort to order array by business key?
If the questioner is using an NSArray, the stdlib's qsort() won't help very much.
1d
answered Quicksort to order array by business key?
2d
comment Using KVC operator e.g., @unionOfSets/@sum in IB’s Value Binding Model Key Path
@Seymore, We need to see the object model that you're applying the key path to. The Core Data managed object model (if you're using Core Data) or the Xcode->Design->Class Model->Quick Model of the classes or some code...
2d
comment Using KVC operator e.g., @unionOfSets/@sum in IB’s Value Binding Model Key Path
@Seymore Yup, I was right: even when you think you know KVC, it's easy to get wrong. I usually have to play around in PyObjC or at the debugger console to get it right. Without a clearer picture of your object model, it's hard for me to figure out exactly what's going on. Could you post a screen shot of the object model and/or some code?
2d
revised How to pass all arguments of a method into NSLog?
added 135 characters in body
2d
comment How to pass all arguments of a method into NSLog?
Yes, absolutely, start from &self.
2d
answered Using KVC operator e.g., @unionOfSets/@sum in IB’s Value Binding Model Key Path
2d
answered Core Data (iPhone)- Limiting the fetch results across a relationship
2d
revised How to pass all arguments of a method into NSLog?
added 42 characters in body
Nov
25
accepted Core Data count of uniq field
Nov
25
answered Core Data count of uniq field
Nov
25
answered How to pass all arguments of a method into NSLog?
Nov
25
comment Core Data (SQLite/iPhone) - design considerations?
Core Data operates easily on >1e6 objects using the SQLite store as long as you don't have too many instances in memory in the managed object context at one time (a standard consideration on the iPhone).
Nov
23
revised Calculate direction vector
added 5 characters in body
Nov
23
comment Calculate direction vector
@Zinx, Yes a * (x,y) is multiplying a vector by a scalar, which corresponds to dividing each component of the vector by a.
Nov
23
answered Calculate direction vector
Nov
23
revised Objective-C O/R Mapper for IPhone
edited body
Nov
23
comment Objective-C O/R Mapper for IPhone
FMDB is not an ORM, but it's about all you've got if you have to work with an existing SQLite file/schema rather than letting Core Data handle the schema for you.
Nov
23
answered Objective-C O/R Mapper for IPhone
Nov
23
revised MVVM questions on Josh Smith’s Sample Application
added 1 characters in body; edited title
Nov
23
accepted C++ version of Java PropertySheet
Nov
22
accepted Small “embeddable” database that can also be synced over the network?
Nov
22
answered Small “embeddable” database that can also be synced over the network?
Nov
22
comment Small “embeddable” database that can also be synced over the network?
The entire Erlang VM, which is required is a potentially large install, I agree. CouchDB itself is actually pretty svelte. However, I don't think you're going to find anything that fits all your requirements without a large dependency; synchronization is hard.
Nov
22
revised Small “embeddable” database that can also be synced over the network?
added 116 characters in body
Nov
22
answered method of obtaining the number of bytes
Nov
22
answered Small “embeddable” database that can also be synced over the network?
Nov
22
answered Analogy? A programming language without namespaces is like (…)
Nov
22
comment Why my mouse move inversely on Leopard 10.5.7?
Not programming related. Belongs on superuser.com.
Nov
21
comment Call from Objective-C into Python
Very nice write up. I think the sticky point is still how to set things up to call into python without the original python call into Objective-C. In other words, how can I call into python code from within my existing Objective-C app? or How can I write plugins for my Objective-C app using python?
Nov
21
accepted Updating Value in Core Data
Nov
21
accepted Displaying data from multiple entities in a single NSTableView (Core-Data)
Nov
20
revised Displaying data from multiple entities in a single NSTableView (Core-Data)
edited tags
Nov
20
answered Displaying data from multiple entities in a single NSTableView (Core-Data)
Nov
20
answered Call from Objective-C into Python
Nov
20
comment Call from Objective-C into Python
The PyObjC templates are no longer included with Xcode since the release cycles of Xcode are much longer than of PyObjC. You can still download the templates from the PyObjC project website (pyobjc.sourceforge.net)
Nov
20
comment Call from Objective-C into Python
PyObjC is included with Snow Leopard and is very much still supported by Apple.
Nov
20
comment Beautifying a SWT application on Mac
The original question was about SWT, not Swing. Although your information is useful (hence no down vote), it's not an answer to the original question.
Nov
20
accepted Core Data Memory Management
Nov
18
comment How do I update a NSTableView when its data source has changed?
@TechZen Fair enough. There seems to be a disconnect between the topic guides and the API docs where the topic guides don't always lead you to the right API docs.
Nov
18
comment CoreData - how much is done to maintain relationships automatically
You bet. Good luck!
Nov
18
accepted CoreData - how much is done to maintain relationships automatically
Nov
18
comment How do I update a NSTableView when its data source has changed?
Fair enough. Good luck.
Nov
18
accepted How do I update a NSTableView when its data source has changed?
Nov
18
revised How do I update a NSTableView when its data source has changed?
deleted 2 characters in body
Nov
18
answered How do I update a NSTableView when its data source has changed?