User Barry Wark - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T12:48:58Zhttp://stackoverflow.com/feeds/user/2140http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810053/how-to-stub-a-class-method-in-ocmock/1811180#18111800Answer by Barry Wark for How to stub a class method in OCMock?Barry Wark2009-11-28T00:49:12Z2009-11-28T00:49:12Z<p>If you modify your method under test to take a parameter which injects the class of the <code>NSURLConnection</code>, then it's relatively easy to pass in a mock that responds to the given selector (you may have to create a dummy class in your test module which has the selector as an instance method and mock that class). Without this injection, you're using a class method, essentially using <code>NSURLConnection</code> (the class) as a singleton and hence have fallen into the anti-pattern of using singleton objects and the testability of your code has suffered.</p>
http://stackoverflow.com/questions/1805903/quicksort-to-order-array-by-business-key/1805975#18059753Answer by Barry Wark for Quicksort to order array by business key?Barry Wark2009-11-26T22:37:02Z2009-11-26T22:37:02Z<p><code>NSArray</code> has <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSArray%5FClass/NSArray.html#//apple%5Fref/doc/uid/20000137-SW12" rel="nofollow">several</a> sorting methdods. Given your array, <code>arr</code>,</p>
<pre><code>NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"numberProperty" ascending:YES];
NSArray *sortedArr = [arr sortedArrayUsingSortDescriptors:[NSArray arrayWithObject:sortDescriptor]];
</code></pre>
<p>will give you want you an array sorted (ascending) by @"numberProperty". Obviously, you'll have to substitute the name of the <code>NSNumber</code> property in your model objects for <code>@"numberProperty"</code>.</p>
<p>The sorting algorithm is not specified in <code>NSArray</code>'s sorting methods.</p>
http://stackoverflow.com/questions/1797964/how-to-pass-all-arguments-of-a-method-into-nslog/1799472#17994722Answer by Barry Wark for How to pass all arguments of a method into NSLog?Barry Wark2009-11-25T19:42:06Z2009-11-26T03:53:01Z<p>Use gdb. You can set a break point that logs the arguments to the method and continues.</p>
<p>If you insist on doing it the hard way... It's certainly not simple, but you could use the stack structure on a given architecture/ABI and make use of the Objective-C runtime to figure out how many arguments and of what size to look for. From here on out, I'm in unchartered territory; I've never done this nor would I ever bother. So YMMV...</p>
<p>Within your method, you can get the <code>Method</code> struct, then the number of arguments, then each argument type and the its size. You could then walk the stack from the address of the <code>self</code> parameter (i.e. <code>&self</code>), assuming you knew what you were doing... </p>
<pre><code>Method method = class_getInstanceMethod([self class], _cmd);
unsigned nargs = method_getNumberOfArguments(method);
void *start = self;
for(unsigned i = 0; i<nargs; i++) {
char *argtype = method_copyArgumentType(method, i);
//find arg size from argtype
// walk stack given arg zie
free(argtype);
}
</code></pre>
<p>Along the way you'd have to convert from the argtype string (using the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtTypeEncodings.html#//apple%5Fref/doc/uid/TP40008048-CH100-SW1" rel="nofollow">Objective-C type encodings</a>) to the size of each argument on the stack.</p>
<p>Of course then you'd have to derive the format string for each type, and call <code>NSLogv</code> with an appropriate variable argument array containing the arguments, copied from their location on the stack. Probably a lot more work than its worth. Use the debugger.</p>
http://stackoverflow.com/questions/1800973/using-kvc-operator-e-g-unionofsets-sum-in-ibs-value-binding-model-key-path/1801106#18011064Answer by Barry Wark for Using KVC operator e.g., @unionOfSets/@sum in IB's Value Binding Model Key PathBarry Wark2009-11-26T01:37:01Z2009-11-26T01:37:01Z<p>First, take an other look at the KVC Programming Guide's <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/KeyValueCoding/Concepts/ArrayOperators.html#//apple%5Fref/doc/uid/20002176" rel="nofollow">Set and Array Operators section</a>. KVC's set and array operators are powerful, but it's easy to get them wrong, even after you've grokked the system. And it's nearly impossible to get them right until you do.</p>
<p>That said, I think you mean you used <code>"@unionOfSets.departments.@sum.amount"</code> since you say the error involves <code>@sum</code>, and <code>@sale</code> isn't a legal KVC operator. Assuming that's right, and that you have a model like foo-><em>departments-></em>sales.amount, you probably want something like</p>
<pre><code>"@sum.departments.@sum.sales.amount"
</code></pre>
<p>to get the total sales for all departments.</p>
http://stackoverflow.com/questions/1800084/core-data-iphone-limiting-the-fetch-results-across-a-relationship/1800208#18002080Answer by Barry Wark for Core Data (iPhone)- Limiting the fetch results across a relationshipBarry Wark2009-11-25T21:52:37Z2009-11-25T21:52:37Z<ol>
<li>Use a fetched property</li>
<li>Use <code>NSFetchedResultsController</code></li>
</ol>
<p>The answer to these and the questions you will have next are answered in the <a href="http://developer.apple.com/iphone/library/documentation/cocoa/Conceptual/CoreData/cdProgrammingGuide.html" rel="nofollow">Core Data Programming Guide</a> for the iPhone.</p>
http://stackoverflow.com/questions/1799381/core-data-count-of-uniq-field/1799513#17995131Answer by Barry Wark for Core Data count of uniq fieldBarry Wark2009-11-25T19:49:23Z2009-11-25T19:49:23Z<p>Given <code>NSSet *setOfPeople</code>,</p>
<pre><code>[setOfPeople valueForKeyPath:@"@distinctUnionOfObjects.group"].count;
</code></pre>
<p>is the Key-Value coding way to do it. If there are a <em>lot</em> of people or groups, it may be faster to let the SQLite query engine do it (assuming you're using a SQLite backend)...</p>
<p>In a Core Data query, it's easiest if there is an inverse (to-many) relationship from Group to People. So, if the inverse relationship of <code>People.group</code> is <code>Group.people</code> and you have an initialized <code>NSManagedObjectContext *managedObjectContext]</code>:</p>
<pre><code>NSFetchRequest *fetch = [[NSFetchRequest alloc] init];
[fetch setEntity:[NSEntityDescription entityForName:@"Group" inManagedObjectContext:managedObjectContext]];
[fetch setPredicate:[NSPredicate predicateWithFormat:@"ANY people IN %@", setOfPeople]];
NSError *err;
NSUIntetger groupCount = [managedObjectContext countForFetchRequest:fetch error:&err];
</code></pre>
http://stackoverflow.com/questions/1786873/calculate-direction-vector/1786908#17869081Answer by Barry Wark for Calculate direction vectorBarry Wark2009-11-23T23:53:00Z2009-11-23T23:58:37Z<p>If you want the vector from the end of vector (x1,y1) to the end of vector (x2,y2), the answer is</p>
<pre><code>(x2-x1, y2-y1) + (x1,y1)
</code></pre>
<p>If you want the (unit-length) direction vector, then the answer is</p>
<pre><code>((x2-x1)/L, (y2-y1)/L)
</code></pre>
<p>where <code>L=√((x2-x1)² + (y2-y1)²)</code> (thats <code>$L=\sqrt{(x2-x1)^2 + (y2-y1)^2}$</code> in LaTeX).</p>
http://stackoverflow.com/questions/1786271/objective-c-o-r-mapper-for-iphone/1786380#17863801Answer by Barry Wark for Objective-C O/R Mapper for IPhoneBarry Wark2009-11-23T22:06:38Z2009-11-23T22:06:38Z<p>Although Apple's <a href="http://developer.apple.com/iphone/library/documentation/DataManagement/Conceptual/iPhoneCoreData01/Introduction/Introduction.html" rel="nofollow">Core Data</a> framework is <a href="http://stackoverflow.com/questions/523482/core-data-vs-sqlite3/524301#524301"><em>not</em></a> an ORM, it may be what you are looking for. In particular, if what you want is to persist your object model to a database to make it possible to have object graphs that are larger than available memory or to make querying efficient, Core Data is a good solution. If, on the other hand, you are trying to find an ORM to work with an existing SQLite database, you're out of luck.</p>
http://stackoverflow.com/questions/1779287/small-embeddable-database-that-can-also-be-synced-over-the-network/1779601#17796011Answer by Barry Wark for Small "embeddable" database that can also be synced over the network?Barry Wark2009-11-22T18:54:07Z2009-11-22T18:54:07Z<p>Do you need clients to work offline and then resync when they reconnect to the network? I don't know if <a href="http://mongodb.org" rel="nofollow">MongoDB</a> can handle the offline client scenario, but if the client is online all the time, MongoDB might be a good solution too. It has pretty goode python <a href="http://www.mongodb.org/display/DOCS/Python+Language+Center" rel="nofollow">support</a>. Still a separate process, but perhaps easier to get running on Windows than CouchDB.</p>
http://stackoverflow.com/questions/1779287/small-embeddable-database-that-can-also-be-synced-over-the-network/1779502#17795021Answer by Barry Wark for Small "embeddable" database that can also be synced over the network?Barry Wark2009-11-22T18:23:11Z2009-11-22T18:30:44Z<p>If you don't need an SQL database, what's wrong with CouchDB? You can spawn a local process to serve the DB, and you could easily write a server wrapper to allow only access from your app. I'm not sure about the access story, but I believe the latest Ubuntu uses CouchDB for synchronizeable user-level data.</p>
http://stackoverflow.com/questions/1778628/method-of-obtaining-the-number-of-bytes/1779510#17795100Answer by Barry Wark for method of obtaining the number of bytesBarry Wark2009-11-22T18:27:18Z2009-11-22T18:27:18Z<p><code>NSString</code> is a unicode string. Thus, there is no such thing as byte length without specifying an encoding for the unicode code points of each letter in the string. As others have pointed out, once you choose an encoding,</p>
<pre><code>-[NSString lengthOfBytesUsingEncoding:]
</code></pre>
<p>is what you need.</p>
<p>You might find <a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">this</a> what-you-need-to-know tutorial on Unicode helpful. </p>
http://stackoverflow.com/questions/1777944/analogy-a-programming-language-without-namespaces-is-like/1778033#17780332Answer by Barry Wark for Analogy? A programming language without namespaces is like (...)Barry Wark2009-11-22T06:48:55Z2009-11-22T06:48:55Z<p>A programming language without namespaces is like any other programming language: it has weaknesses and strengths. A lack of namespaces is probably a weakness, but think of how much <em>successful</em> code has been written in languages like C, without namespaces. Objective-C, the native development language for both OS X and the iPhone has only basic namespace support, yet you'd be hard pressed to say that there's no good software written for the Mac or iPhone. Good programmers write good software in any language, working around the languages weaknesses and playing to its strengths.</p>
http://stackoverflow.com/questions/1773762/displaying-data-from-multiple-entities-in-a-single-nstableview-core-data/1773944#17739443Answer by Barry Wark for Displaying data from multiple entities in a single NSTableView (Core-Data)Barry Wark2009-11-20T23:56:22Z2009-11-20T23:56:22Z<p>You can do this assuming that you have set the reverse relationship for <code>pupilID</code> (i.e. a relationship from Pupil to the Loan). If you call that relationship <code>loan</code>, and have an <code>NSArrayController</code>, <code>PupilsController</code> bound to the collection of Pupils, then your first table could be bound to <code>PupilsController.arrangedObjects.loan.loadID</code> and your other columns bound as you'd expect.</p>
<p>On a purely stylistic side note, the <code>pupilID</code> property would more appropriately be named <code>pupil</code>. Core Data is no an ORM and you're not in SQL JOIN land any more. Name the properties what they are, not how they're implemented under the hood by Core Data.</p>
http://stackoverflow.com/questions/1772491/call-from-objective-c-into-python/1773580#17735802Answer by Barry Wark for Call from Objective-C into PythonBarry Wark2009-11-20T22:13:43Z2009-11-20T22:13:43Z<p>Unfortunately the story for using Python via PyObjC from within an Objective-C app is not very good at the moment. <code>py2app</code> which ships with PyObjC can compile loadable bundles (i.e. can be loaded via <code>NSBundle</code>), which seems like the best approach: define an <code>NSObject</code> subclass in python that implements a protocol (obtained via <code>objc.protocolNamed</code>) that you define in Objective-C, then compile this python file into a loadable bundle via py2app (which uses a standard setup.py). Unfortunately, <code>py2app</code> hasn't had much love, especially the plugin (loadable bundle) target, and a serious memory leak was introduced sometime around 10.5 such that any data passed from python to Objective-C from a py2app-compiled bundle leaks. Yuck.</p>
<p>PyObjC manipulates the Objective-C runtime in accordance with the ObjC-related code executed in Python, thus to be able to call python code from Objective-C, the general outline goes like</p>
<ol>
<li>Write PyObjC wrapper around python code</li>
<li>Execute code declaring PyObjC wrapper to add these definitions to the ObjC runtime</li>
<li>Call PyObjC wrapper from Objective-C. Because it's declared at runtime, the symbols aren't available at compile time, so you'll have to use <code>NSClassFromString</code> et al. to instantiate the class. It's helpful to declare a <code>@protocol</code> with the appropriate methods so that the Objective-C compiler doesn't complain about missing methods.</li>
</ol>
<p>If you have flexibility, the best option is to use the Cocoa-Python app templates (i.e. create a Python app), and then load your Objective-C code as a loadable bundle from within Python. This takes care of managing the Python interpreter for you.</p>
<p>Otherwise, with the code in <code>main.m</code> of the Cocoa-Python app template, you should be able to create a Python interpreter, execute your PyObjC code and then continue on. Obviously, the interpreter needs to be kept running so that your python code can execute, so you'll likely have to do this from a separate thread. As you can see this can get a little hairy. Better to go with the Python app, as described above.</p>
<p>Keep in mind that PyObjC is not guaranteed to play well with the Objective-C garbage collector, so all of these options require that your Objective-C code not use GC.</p>
http://stackoverflow.com/questions/380076/manual-core-data-schema-migration-without-document-changed-warning1Manual Core Data schema migration without "document changed" warning?Barry Wark2008-12-19T04:04:36Z2009-11-19T00:27:40Z
<p>The data model for my Core Data document-based app (10.5 only) is in a
framework, so automatic schema upgrades using a Core Data mapping
model don't appear to work. It appears that the Core Data machinery
doesn't find the appropriate data models or mapping model when they
are not in the app's main bundle. So, instead of using the automatic
migration, I'm running a migration manually in
<code>configurePersistentStoreCoordinatorForURL:ofType:...</code> in my
<code>NSPersistenDocument</code> subclass (code below). I migrate the persistent
store to a temporary file and then overwrite the existing file if the
migration succeeds. The document then presents an error with the
message "This document's file has been changed by another application
since you opened or saved it." when I try to save. As others on this
list have pointed out, this is due to my modification of the
document's file "behind its back". I tried updating the document's
file modification date, as shown below, but I then get an error dialog
with the message "The location of the document "test.ovproj" cannot be
determined." when I try to save. I'm less sure of the reason for this
error, but trading one unnecessary message (in this case) for an other
isn't quite what I was going for.</p>
<p>Can anyone offer some guidance? Is there a way to manually upgrade the
schema for a document's persistent store without triggering one of
these (in <em>this</em> case unnecessary) warnings?</p>
<p>code for upgrading the data store in my subclasses
<code>-configurePersistentStoreCoordinatorForURL:ofType:...</code> :</p>
<pre><code>if(upgradeNeeded) {
NSManagedObjectModel *sourceModel = [NSManagedObjectModel mergedModelFromBundles:VUIModelBundles() orStoreMetadata:meta];
if(sourceModel == nil) {
*error = [NSError errorWithDomain:VUIErrorDomainn ode:VUICoreDataErrorCode localizedReason:BWLocalizedString(@"Unable to find original data model for project.")];
return NO;
}
NSManagedObjectModel *destinationModel = [self managedObjectModel];
NSMigrationManager *migrationManager = [[NSMigrationManager alloc] initWithSourceModel:sourceModel destinationModel:destinationModel];
NSMappingModel *mappingModel = [NSMappingModel mappingModelFromBundles:VUIModelBundles() forSourceModel:sourceModel destinationModel:destinationModel];
if(mappingModel == nil) {
*error = [NSError errorWithDomain:VUIErrorDomain code:VUICoreDataErrorCode localizedReason:BWLocalizedString(@"Unable to find mapping model to convert project to most recent project format.")];
return NO;
}
@try {
//move file to backup
NSAssert([url isFileURL], @"store url is not a file URL");
NSString *tmpPath = [NSString tempFilePath];
id storeType = [meta objectForKey:NSStoreTypeKey];
if(![migrationManager migrateStoreFromURL:url
type:storeType
options:storeOptions
withMappingModel:mappingModel
toDestinationURL:[NSURLfileURLWithPath:tmpPath]
destinationType:storeType
destinationOptions:storeOptions
error:error]) {
return NO;
} else {
//replace old with new
if(![[NSFileManager defaultManager] removeItemAtPath:[url path] error:error] ||
![[NSFileManager defaultManager] moveItemAtPath:tmpPath toPath:[url path] error:error]) {
return NO;
}
// update document file modification date to prevent warning (#292)
NSDate *newModificationDate = [[[NSFileManager defaultManager] fileAttributesAtPath:[url path] traverseLink:NO] bjectForKey:NSFileModificationDate];
[self setFileModificationDate:newModificationDate];
}
}
@finally {
[migrationManager release];
}
}
}
return [super configurePersistentStoreCoordinatorForURL:url ofType:fileType modelConfiguration:configuration storeOptions:storeOptions error:error];
</code></pre>
http://stackoverflow.com/questions/1758525/how-do-i-update-a-nstableview-when-its-data-source-has-changed/1758538#17585383Answer by Barry Wark for How do I update a NSTableView when its data source has changed?Barry Wark2009-11-18T19:43:26Z2009-11-18T19:43:26Z<pre><code>-[NSTableView reloadData];
</code></pre>
<p>(as a couple of good minutes with the <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/ApplicationKit/Classes/NSTableView%5FClass/Reference/Reference.html" rel="nofollow"><code>NSTableView</code></a> API reference would have told you.)</p>
http://stackoverflow.com/questions/1756217/coredata-how-much-is-done-to-maintain-relationships-automatically/1757722#17577222Answer by Barry Wark for CoreData - how much is done to maintain relationships automaticallyBarry Wark2009-11-18T17:32:26Z2009-11-18T17:32:26Z<p>Yes, <code>-graft</code> is sufficient. Core Data's true purpose in life is to maintain the object graph of a collection of object instances according to the description provided by a managed object model. If you declare a relationship as one-to-one, then assigning (in this case) <code>A.tail.owningDog=B</code> will reset the one-to-one relationship, breaking the previous relationships, if necessary. This is the reason to use inverse relationships in Core Data models, even if you don't think you'll need to traverse the relationship in both directions. The inverse relationship allows Core Data to help you by managing the entire relationship in the way I described above.</p>
http://stackoverflow.com/questions/1752946/how-to-get-the-first-n-words-from-a-nsstring-in-objective-c/1752958#17529585Answer by Barry Wark for How to get the first N words from a NSString in Objective-C?Barry Wark2009-11-18T01:02:20Z2009-11-18T01:55:24Z<p>If the words are space-separated:</p>
<pre><code>NSInteger nWords = 10;
NSRange wordRange = NSMakeRange(0,10);
NSArray *firstWords = [[str componentsSeparatedByString:@" "] subarrayWithRange:wordRange];
</code></pre>
<p>if you want to break on all whitespace:</p>
<pre><code>NSCharacterSet *delimiterCharacterSet = [NSCharacterSet whitespaceAndNewlineCharacterSet];
NSArray *firstWords = [[str componentsSeparatedByCharactersInSet:delimiterCharacterSet] subarrayWithRange:wordRange];
</code></pre>
<p>Then,</p>
<pre><code>NSString *result = [firstWords componentsJoinedByString:@" "];
</code></pre>
http://stackoverflow.com/questions/1752404/macports-confusion/1752424#17524241Answer by Barry Wark for macports confusionBarry Wark2009-11-17T22:46:29Z2009-11-17T23:47:05Z<p>MacPorts installs its own dependencies in the <code>/opt/local</code> tree (you can change this default when you build MacPorts) because its packagers then have a known quantity to test against. In some cases there is a system package for a given dependency that will let you use the system-installed version, but that's actually pretty rare. System vs. MacPort versions are chosen according to whichever comes first on the <code>PATH</code> (for executables) or the linker path(s) for dynamic libraries. Use your standard development tools' options to select the appropriate libraries to link against and you should be fine.</p>
http://stackoverflow.com/questions/1747170/c-version-of-java-propertysheet/1750258#17502582Answer by Barry Wark for C++ version of Java PropertySheetBarry Wark2009-11-17T16:58:26Z2009-11-17T16:58:26Z<p>It looks like the Qt <a href="http://doc.trolltech.com/solutions/4/qtpropertybrowser/index.html" rel="nofollow">Property Browser</a> framework is what you're looking for. It has built-in string and numeric editors. You may have to write your own editor for other types (which it appears can be easily registered with the framework). Several presentation styles for nested properties are provided: tree, disclosure and group boxed.</p>
http://stackoverflow.com/questions/1736451/native-python-editor-for-mac/1736518#17365181Answer by Barry Wark for Native Python Editor for Mac?Barry Wark2009-11-15T04:00:46Z2009-11-15T04:00:46Z<p>There're aren't any Mac-specific Python IDEs, though <a href="http://www.activestate.com/komodo/" rel="nofollow">Komodo's</a> IDE, <a href="http://www.netbeans.org/features/python/index.html" rel="nofollow">NetBeans</a> and Eclipse (with the excellent <a href="http://pydev.sourceforge.net/" rel="nofollow">PyDev</a> extensions) all have very good Python IDE functionality and run fine on OS X. I've never used <a href="http://www.wingware.com/" rel="nofollow">Wing</a> IDE on OS X, but it has a pretty loyal following as well. If you just need an editor (I find that a good editor and a command line are often sufficient for Python), <a href="http://macromates.com/" rel="nofollow">TextMate</a> along with <a href="http://ipython.scipy.org" rel="nofollow">IPython</a> in a terminal is the way to go. When I really do need a full IDE, I've been very happy with Eclipse/PyDev.</p>
http://stackoverflow.com/questions/1736065/how-do-you-refer-to-each-of-these/1736083#17360833Answer by Barry Wark for How do you refer to each of these?Barry Wark2009-11-15T00:15:34Z2009-11-15T00:48:59Z<p>In your first example, the result of <code>+planet</code> is autoreleased. Thus the caller must call <code>-retain</code> on the result if it wants to maintain a reference to the result. <code>+planet</code> is the more common pattern (although <code>+[NSObject new]</code> exists, it's much more common in Cocoa-land to use and <code>alloc/init</code> pair or a convenience constructor like your <code>+planet</code> (which returns an autoreleased instance according to the Cocoa memory management rules).</p>
<p>In both examples, the result of <code>+planet</code>/<code>+newPlanet</code> is an instance of the <code>Planet</code> class. There's no difference in terminology, but documentation of the (correct) first example might be explicit in stating the that the result is "autoreleased" even though the standard Cocoa memory management conventions would dictate that the result be autoreleased.</p>
http://stackoverflow.com/questions/1735085/c-vs-c-objective-c-vs-objective-c-for-iphone/1735666#17356664Answer by Barry Wark for C vs C++ (Objective-C vs Objective-C++) for iPhoneBarry Wark2009-11-14T21:25:52Z2009-11-14T21:25:52Z<p>I believe your information is incorrect. Objective-C++ <em>is</em> a superset of C++. Any C++ is legal Objective-C++. In addition, you can mix Objective-C and C++ code in a an Objective-C++ (usually .mm) file and (with some restrictions) mix Objective-C and C++ class instance variables within an Objetive-C++ class. Objective-C++ is particularly useful for interfacing between Objective-C and a C++ library. Write your cross-platform library in C++. You can then call it from Objective-C++ within an application. Re-read the Objective-C++ <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ocCPlusPlus.html" rel="nofollow">section</a> of the Objective-C language guide for more info.</p>
<p>The major downside to using Objective-C++ is increased compile times (Objective-C++ is even worse than C++ and the Clang LLVM compiler doesn't handle Objective-C++ yet). There is no performance difference between Objective-C and Objective-C++ beyond any differences in the code that's called (e.g. if you're a better C++ dev., your C++ will probably be more efficient than your C library and visa versa).</p>
http://stackoverflow.com/questions/1734554/core-data-memory-management/1735645#17356451Answer by Barry Wark for Core Data Memory ManagementBarry Wark2009-11-14T21:20:31Z2009-11-14T21:20:31Z<p>Core Data manages object lifetimes the same way the rest of Cocoa manages object lifetimes: NSManagedObject instances in a managed object context are retained in memory as long as the managed object context <em>or any other object</em> retains ownership of them (via <code>-[NSObject retain]</code>. By default, the <code>NSManagedObjectContext</code> does not retain instances, so they are released as soon as any other owners (i.e. your <code>NSFetchedResultsController</code> instances or other instances in your program) release them. You can change this default behavior of the managed object context to retain instances, but you rarely want to. The managed object context <em>has</em> to retain instances that are updated until the next save. There's no way to preserve these changes except in the object instance until the context is saved. So, to minimize memory usage of Core Data objects, follow the standard rules: release them as soon as you can. If you find that your context memory usage is growing (use Instruments' Core Data instruments to track this), save the context more frequently if you are updating instances and hence keeping them alive in the context until the next save even if you've otherwise released them.</p>
<p>Using <code>NSFetchedResultsController</code> makes all of this easier. In fact, the reason <code>NSFetchedResultsController</code> exists at all is to make batch fetching in a low memory environment (like the iPhone) easier for the programmer.</p>
<p>As Louis mentioned, the <code>NSPersistentStoreCoordinator</code> maintains a row cache to cache instance data in memory instead of having to go back to disk when an object is faulted into the managed object context. This is a Core Data implementation detail, however (though cache misses are a performance hit; you can track cache misses in Instruments). Core Data manages the cache memory and you shouldn't have to worry about it.</p>
http://stackoverflow.com/questions/1728170/objcclassnameabpersonviewcontroller-referenced-from/1731028#17310280Answer by Barry Wark for ".objc_class_name_ABPersonViewController", referenced from:Barry Wark2009-11-13T18:31:33Z2009-11-13T18:31:33Z<p>This is an error generated by the linker when it can't find a definition for the symbol <code>.objc_class_name_ABPersonViewController</code>. This symbol is for the <code>ABPersonViewController</code> defined in AdressBook.framework. So, you need to link your application with AddressBook.framework. To do so, select the application target in the Targets group of the Groups & Files pane in Xcode. Select Get Info from the target's context menu. In the "General" tab of the info panel, add AddressBook.framework to the "Linked Libraries" list.</p>
http://stackoverflow.com/questions/1714054/cocoa-core-data-newbie-how-tos/1720424#17204242Answer by Barry Wark for Cocoa Core Data newbie how-tosBarry Wark2009-11-12T07:05:18Z2009-11-12T07:05:18Z<p>Core Data really isn't a data access layer (see my other answer for more). But what if you <em>want</em> a data access layer for Cocoa? What are your options? I'm a professional Cocoa and Qt developer and so far I've managed to avoid the Windows or Java enterprise world, so my evaluation of the options may not match yours exactly. Coming from an enterprise-y ecosystem, I expect you'll find the options a little scary. I've ordered them in what I expect will be most to least scary for you (roughly most to least Cocoa-y and so also roughly most to least familiar for me). Find the spot on the list where your stomach stops lurching and you've found your solution...</p>
<ol>
<li><p>Although Core Data is a very powerful framework for managing the object graph of the model component of an MVC architecture, you're not obligated to use it. You can write your own model layer and still play in the Cocoa MVC world. This is how we did it before Core Data. You can still use the Cocoa <code>NSObjectController</code>, <code>NSArrayController</code>, and <code>NSTreeController</code> if you want. Thus, you can roll your own data access layer using the native C/C++ APIs of your data base vendor.</p></li>
<li><p>The <a href="http://basetenframework.org/" rel="nofollow">BaseTen</a> framework is a commercial licensed Core Data-like API on top of a PostgreSQL backend. It is really more of an ORM than an object graph management framework like Core Data, but the API is similar. My understanding is that it can handle existing (arbitrary) schema or make use of Core Data managed object models. They provide their own <code>NSArrayController</code> subclass that you can use as a drop in replacement for Cocoa's array controller. I've never used BaseTen personally, so I can't speak to its utility, but I've heard good things. As far as I know it's PostgreSQL only.</p></li>
<li><p>The Python-Objective-C bridge, called PyObjC, is quite mature and ships with OS X since 10.5. Using this bridge you can write complete Cocoa apps in Python or write a hybrid Python/Objective-C app. Using PyObjC, you could make use of any of the Python ORMs such as <a href="http://www.sqlalchemy.org/" rel="nofollow">SQLAlchemy</a> to implement your model layer. Again, not no work but perhaps still relatively easy for a competent Python and Cocoa programmer.</p></li>
<li><p>Apple's Enterprise Object Framework, part of WebObjects, is now a Java ORM that has an Objective-C ORM in its lineage. You can, I believe, still write desktop apps using WebObjects. I understand that many Cocoa patterns carry over, but this is a very different beast. I've never written WebObjects code, so I can't give you much more advice on this one.</p></li>
<li><p>You can make use of a cross-platform toolkit. <a href="http://qtsoftware.com" rel="nofollow">Qt</a> can produce decent looking Mac UIs (though see below). Qt also has a model-layer framework that includes SQL support for <a href="http://doc.trolltech.com/4.5/sql-driver.html" rel="nofollow">several</a> data bases in the <a href="http://doc.trolltech.com/4.5/qtsql.html" rel="nofollow">QtSql</a> module. Qt is not Cocoa <em>at all</em>. Savy Mac users don't like non-native apps. Qt is about as good as it gets for cross-platform on OS X, but it's not perfect. If you can stay native, do it.</p></li>
<li><p>Any Java Swing/SWT crap. Again, this is powerful stuff, but it looks like hell on the Mac and users don't like it.</p></li>
<li><p>Mono on OS X is relatively immature and I don't know what the status of any of the .Net ORMs are on Mono. It's something to take a look at though. As far as UI, the Mono-GTK stuff looks pretty bad on OS X. There is a C# binding for Qt called Qyoto which runs on Mono.</p></li>
</ol>
http://stackoverflow.com/questions/1714054/cocoa-core-data-newbie-how-tos/1717442#17174424Answer by Barry Wark for Cocoa Core Data newbie how-tosBarry Wark2009-11-11T19:19:34Z2009-11-11T19:19:34Z<p>First, as Apple's documentation (and recurring comments from Apple engineers) state, Core Data is an "advanced" Cocoa technology. Grokking Core Data requires knowledge of a lot of Cocoa paradigms and patterns. Seriously, learn Cocoa first. Then write a project (or several) without Core Data. Then learn Core Data. Seriously.</p>
<p>To quiet your curiosity, I'll take a stab at the CRUD answer, though it's not going to be the answer you want. The answer is that there is no CRUD pattern for Core Data, at least not the way you think of it. The reason is that Core Data is not a data access layer. It is an object graph management framework. That means the <em>explicit, intended</em> job of Core Data is to manage a graph of object instances. This graph has constraints (such as cardinality of relationships or constraints on individual instance attributes) and rules for cascading changes (such as a delete) through the graph. Core Data manages these constraints. Because an object graph may be too large to be stored in memory, Core Data provides an interface to your object graph that simulates[1] an entire object graph in memory via faulting (object instances are not "faults" when first brought into a managed object context and are "fired" to populate their attributes from the persistent store lazily) and uniquing (only one in-memory instance of a particular entity instance (in the persistent store) is created in the context).</p>
<p>Core Data just <em>happens</em> to use an on-disk persistent store to implement the interface of a large object graph. In the case of an SQLite persistent store, this implementation just <em>happens</em> to use a SQL-compatible database. This is an implementation detail, however. You can, for example create an in-memory persistent store that does not persist anything to disk but allows Core Data to manage your object graph as usual. Thus, Core Data is not really a data access layer. To think of it in these terms will miss it's true power and will lead to frustration. You can't use Core Data with an arbitrary data base schema (this is why all Core Data tutorials start with creating the NSManagedObjectModel). You shouldn't use Core Data as a persistence framework and use a separate model layer; you should use Core Data as a model layer and take advantage of Core Data's ability to persist the model's object graph to disk for you.</p>
<p>That said, to create an <code>NSManagedObjectContext</code> (which provides the object graph interface I described above):</p>
<pre><code>NSManagedObjectModel *mom = [NSManagedObjectModel mergedModelFromBundles:[NSArray arrayWithObject:[NSBundle mainBundle]]]; // though you can create a model on the fly (i.e. in code)
NSPersistentStoreCoordinator *psc = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:mom];
NSError *err;
// add an in-memory store. At least one persistent store is required
if([psc addPersistentStoreWithType:NSInMemoryPersistentStore configuration:nil URL:nil options:nil error:&err] == nil) {
NSLog(@"%@",err);
}
NSManagedObjectContext *moc = [[NSManagedObjectContext alloc] init];
[moc setPersistentStoreCoordinator:psc];
</code></pre>
<p>(note that I'm assuming you're using Garbage Collection; this code leaks in a manual memory management environment).</p>
<p>To add an entity instance (continuting with <code>moc</code> from above):</p>
<pre><code>NSEntityDescription *entity = [NSEntityDescription entityForName:@"MyEntity" inManagedObjectContext:moc];
//entity will be nil if MyEntity doesn't exist in moc.persistentStoreCoordinator.managedObjectModel
NSManagedObject *obj = [[NSManagedObject alloc] initWithEntity:entity insertIntoManagedObjectContext:moc];
</code></pre>
<p>Notice that you <em>need</em> an entity description to create a managed object (why tutorials start with the model) and that you can't create a managed object without a managed object context.</p>
<p>To update an entity instance:</p>
<pre><code>[obj setValue:myValue forKey:@"attributeKey"]; //or use any method on `obj` that updates its state
NSError *err;
if(![moc save:&err]) {
NSLog(@"%@", err); // an erro occurred in saving, perhaps due to optimistic locking failure
}
</code></pre>
<p>To delete an entity instance:</p>
<pre><code>[moc deleteObject:obj];
if(![moc save:&err]) {
NSLog(@"%@", err); // an erro occurred in saving, perhaps due to optimistic locking failure
}
</code></pre>
<p>[1]: For binary or XML persistent stores, the entire graph <em>is</em> stored in memory</p>
http://stackoverflow.com/questions/1711586/core-data-in-a-static-library-for-the-iphone/1711712#17117121Answer by Barry Wark for core data in a static library for the iPhoneBarry Wark2009-11-10T22:31:56Z2009-11-10T22:31:56Z<p>No, the limitation on using non-Apple frameworks in an iPhone app really changes the dependency game relative to OS X. Most iPhone "frameworks" (e.g. Google's toolbox for Mac, Core Plot, etc.) actually <em>recommend</em> that you include the source in your main application project rather than linking a product (i.e. a static library). I think the community consensus is that, on iPhone, it's OK to expect consumers of your framework to have to do a little "manual" work to use your library. In your case, this is including the xcdatamodel file in the main project. As with most of Objective-C, tell your users not to make use of the implementation details and leave it at that.</p>
http://stackoverflow.com/questions/1694870/typing-methods-with-id/1694881#16948815Answer by Barry Wark for Typing methods with `id`Barry Wark2009-11-08T00:15:14Z2009-11-08T20:21:26Z<p>Since the language permits both forms, it's really a mater of style. Given that, Objective-C leans heavily on readability over terseness, and most devs would prefer the first (<code>-(id)someMethod</code>) becuase it makes explicit the return type.</p>
<p>Not directly relevant to your question, but <code>id</code> is not dynamically typed. It is a pointer to an Objective-C object. Since message dispatch is dynamic in Objective-C, <code>id</code> can often be treated like a dynamic type, but it's still actually a static type. In other words, Objective-C is dynamically <em>bound</em> but statically typed.</p>
http://stackoverflow.com/questions/1693475/core-data-with-in-memory-store/1694752#16947523Answer by Barry Wark for Core Data with in-memory storeBarry Wark2009-11-07T23:05:16Z2009-11-07T23:05:16Z<p>Your first question suggests you misinterpreted the intention of <code>NSInMemoryStore</code> type persistent stores. They are the <em>persistent</em> store part of the Core Data stack. Faulting is something that happens when you bring instances into a managed object context; a fault is created which fires and populates itself from the <code>NSPersistentStoreCoordinator</code>'s cache or the underlying persistent store when fired. An in-memory store does not change the faulting relationship. Obviously, it won't really help your problem, however since you'll have to <em>persist</em> all the data to memory. In-memory stores are really appropriate for (1) testing (they're fast) and (2) scratch core data stacks in which you want to use Core Data's object graph management without having to persist anything to disk.</p>
<p>In response to you second question, the answer is YES. The staleness interval applies to the context, not to the persistent store.</p>
<p>So, is Core Data appropriate for caching data from a remote database server? Not really. Although Bill Bumgarner (an Apple engineer) has hinted that it's possible, I've found it much easier in my own code to separate the caching from the Core Data object graph management. It's still very nice to use Core Data to manage an object graph and for ease of binding to a Controller/UI layer(s). So my strategy is pull data from the database server and cache it in my own data structure (the libcache and NSCache in OS X 10.6 might make a very good starting point). Then decide what you want in your object graph and migrate that into a Core Data stack (backed by an in-memory persistent store). You'll have to handle change notification or polling from the database server yourself. When the data from the database changes (or the user query changes, etc.), I just tell all editors to finish editing, then wipe the context and rebuild it from the (possibly) updated cache.</p>
http://stackoverflow.com/questions/1811150/more-detailed-information-about-the-exception-in-xcodeComment by Barry Wark on more detailed information about the exception in xcodeBarry Wark2009-11-28T01:02:08Z2009-11-28T01:02:08ZThe exception gives you a selector name. Looking up that selector in the API documentation is usually a good place to start.http://stackoverflow.com/questions/1805903/quicksort-to-order-array-by-business-key/1805975#1805975Comment by Barry Wark on Quicksort to order array by business key?Barry Wark2009-11-27T17:49:37Z2009-11-27T17:49:37ZPerhaps you refer to the convenience factory method for NSSorDescriptor, whihc arrived in 10.6? Just replace it with the equivalent alloc/initWithKey:ascending:/autorelease.http://stackoverflow.com/questions/1805903/quicksort-to-order-array-by-business-key/1805944#1805944Comment by Barry Wark on Quicksort to order array by business key?Barry Wark2009-11-26T23:48:34Z2009-11-26T23:48:34ZIf the questioner is using an <code>NSArray</code>, the stdlib's <code>qsort()</code> won't help very much.http://stackoverflow.com/questions/1800973/using-kvc-operator-e-g-unionofsets-sum-in-ibs-value-binding-model-key-path/1801106#1801106Comment by Barry Wark on Using KVC operator e.g., @unionOfSets/@sum in IB's Value Binding Model Key PathBarry Wark2009-11-26T19:43:18Z2009-11-26T19:43:18Z@Seymore, We need to see the object model that you're applying the key path <i>to</i>. 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...http://stackoverflow.com/questions/1800973/using-kvc-operator-e-g-unionofsets-sum-in-ibs-value-binding-model-key-path/1801106#1801106Comment by Barry Wark on Using KVC operator e.g., @unionOfSets/@sum in IB's Value Binding Model Key PathBarry Wark2009-11-26T05:42:48Z2009-11-26T05:42:48Z@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?http://stackoverflow.com/questions/1797964/how-to-pass-all-arguments-of-a-method-into-nslog/1799472#1799472Comment by Barry Wark on How to pass all arguments of a method into NSLog?Barry Wark2009-11-26T03:52:08Z2009-11-26T03:52:08ZYes, absolutely, start from &self.http://stackoverflow.com/questions/1795093/core-data-sqlite-iphone-design-considerations/1795283#1795283Comment by Barry Wark on Core Data (SQLite/iPhone) - design considerations?Barry Wark2009-11-25T17:19:44Z2009-11-25T17:19:44ZCore 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).http://stackoverflow.com/questions/1786873/calculate-direction-vector/1786908#1786908Comment by Barry Wark on Calculate direction vectorBarry Wark2009-11-23T23:57:11Z2009-11-23T23:57:11Z@Zinx, Yes a * (x,y) is multiplying a vector by a scalar, which corresponds to dividing each component of the vector by a.http://stackoverflow.com/questions/1786271/objective-c-o-r-mapper-for-iphone/1786359#1786359Comment by Barry Wark on Objective-C O/R Mapper for IPhoneBarry Wark2009-11-23T22:07:25Z2009-11-23T22:07:25ZFMDB 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.http://stackoverflow.com/questions/1779287/small-embeddable-database-that-can-also-be-synced-over-the-network/1779502#1779502Comment by Barry Wark on Small "embeddable" database that can also be synced over the network?Barry Wark2009-11-22T18:50:50Z2009-11-22T18:50:50ZThe 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.http://stackoverflow.com/questions/1777673/why-my-mouse-move-inversely-on-leopard-10-5-7Comment by Barry Wark on Why my mouse move inversely on Leopard 10.5.7?Barry Wark2009-11-22T04:58:47Z2009-11-22T04:58:47ZNot programming related. Belongs on superuser.com.http://stackoverflow.com/questions/1772491/call-from-objective-c-into-python/1774565#1774565Comment by Barry Wark on Call from Objective-C into PythonBarry Wark2009-11-21T21:28:58Z2009-11-21T21:28:58ZVery 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?http://stackoverflow.com/questions/1772491/call-from-objective-c-into-python/1772809#1772809Comment by Barry Wark on Call from Objective-C into PythonBarry Wark2009-11-20T20:53:57Z2009-11-20T20:53:57ZThe 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 (<a href="http://pyobjc.sourceforge.net/" rel="nofollow">pyobjc.sourceforge.net</a>)http://stackoverflow.com/questions/1772491/call-from-objective-c-into-python/1772809#1772809Comment by Barry Wark on Call from Objective-C into PythonBarry Wark2009-11-20T20:53:13Z2009-11-20T20:53:13ZPyObjC is included with Snow Leopard and is very much still supported by Apple.http://stackoverflow.com/questions/1769547/beautifying-a-swt-application-on-mac/1770224#1770224Comment by Barry Wark on Beautifying a SWT application on MacBarry Wark2009-11-20T17:43:19Z2009-11-20T17:43:19ZThe 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.