User Alex - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:06:40Zhttp://stackoverflow.com/feeds/user/35999http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/988747/sfauthorizationview-authorize-method-does-not-work/988844#9888440Answer by Alex for SFAuthorizationView authorize: method does not work.Alex2009-06-12T20:18:20Z2009-12-01T00:16:27Z<p>I'm guessing <code>@"Test String"</code> is not the name of an authorization right you've registered with the system. The authorization view needs to know what right you're requesting. <a href="http://developer.apple.com/mac/library/documentation/security/Conceptual/authorization%5Fconcepts/02authconcepts/authconcepts.html#//apple%5Fref/doc/uid/TP30000995-CH205-TPXREF16" rel="nofollow">This document</a> provides an overview about how to do that.</p>
http://stackoverflow.com/questions/1723980/how-exactly-is-nsprintinfos-sharedprintinfo-shared/1725680#17256800Answer by Alex for How exactly is NSPrintInfo's sharedPrintInfo shared?Alex2009-11-12T21:55:02Z2009-11-12T21:55:02Z<p>I don't know the answer to your question, but here's a simple test to find out: call <code>sharedPrintInfo</code> twice and compare the pointers. If they're the same, then no, you get the same <code>NSPrintInfo</code> object back each time. If they're different, then you get a different object back each time. You could do this in the debugger and have your answer in sixty seconds.</p>
http://stackoverflow.com/questions/1722888/copy-from-one-nstableview-to-another-with-core-data-bindings/1723966#17239661Answer by Alex for Copy from one NSTableView to another (With Core Data Bindings)Alex2009-11-12T17:28:28Z2009-11-12T17:28:28Z<p>This isn't really an issue with <code>NSTableView</code>, this is more a matter of program design. What do your <code>NSTableView</code>s display? Data. In order to take the selected object in one table view and make it appear in another, you need to figure out what data object is selected, and add it to the data set for the other table view so that it appears there, too.</p>
<p>It sounds like you're using bindings. If so, then you should bind your second table view to an array controller that tracks the objects that should be displayed there. Whether you need to bind that array controller to a content set depends on your application.</p>
<p>So, to get the selected item, check out the <code>selectedObjects</code> method on <code>NSArrayController</code>. This gives an array of the currently selected objects. You'll then need to add the selected objects to the array controller for the second table view. Once you do that, the bindings will work their magic and update your table view automatically.</p>
http://stackoverflow.com/questions/1716174/changing-the-sorting-in-an-nsfetchedresultscontroller-on-the-fly/1717796#17177960Answer by Alex for Changing the Sorting in an NSFetchedResultsController on the flyAlex2009-11-11T20:18:59Z2009-11-11T20:18:59Z<p><code>fetchRequest</code> is a read-only property. The line of code in your post will not work. If you want to use a different fetch request, you'll need to replace your controller with a new <code>NSFetchedResultsController</code>. Your table won't reload automatically. You'll need to send it a <code>reloadData</code> message some time after you've replaced the <code>NSFetchedResultsController</code>.</p>
http://stackoverflow.com/questions/1717292/return-key-text-field-iphone-sdk/1717376#17173763Answer by Alex for Return Key Text Field? - iPhone SDKAlex2009-11-11T19:05:32Z2009-11-11T19:05:32Z<p>I'm confused. Are you actually expecting a method called <code>blahShouldReturn:</code> to get called when you press the Return button? If you want to use the <code>textFieldShouldReturn:</code> delegate method, it has to be called <code>textFieldShouldReturn:</code>. You can use the <code>UITextField</code> parameter supplied with that method to determine which text field is sending the message. For example:</p>
<pre><code>- (BOOL)textFieldShouldReturn:(UITextField *)textField {
if (textField == blah) {
[textField resignFirstResponder];
} else if (textField == someOtherTextField) {
// Do something else
}
return YES;
}
</code></pre>
http://stackoverflow.com/questions/1703926/is-there-a-bulk-update-operation-for-all-entities-in-core-data/1704359#17043592Answer by Alex for Is there a bulk update operation for all entities in Core Data?Alex2009-11-09T22:27:05Z2009-11-09T22:27:05Z<p>Core Data isn't a database. If you want to bulk-update the objects, you'll have to fetch them and update the values yourself. </p>
<p>A good way of doing that would be to fetch, say, 100 at a time (using an <code>NSFetchRequest</code> with a <code>fetchLimit</code> set), update them, and then save the managed object context. Lather, rinse, repeat until all the objects are updated.</p>
<p>And, as gerry suggested, if the update you're doing is simple, you can use <code>makeObjectsPerformSelector:</code> to do the update in one line.</p>
http://stackoverflow.com/questions/1640900/any-tips-or-best-practices-for-adding-a-new-item-to-a-history-while-maintaining-a/1643782#16437821Answer by Alex for Any tips or best practices for adding a new item to a history while maintaining a maximum total number of items?Alex2009-10-29T13:36:02Z2009-10-29T13:36:02Z<p>Whichever method is easier to implement is the right one. You shouldn't bother with a more efficient/more complicated implementation unless it proves it's needed.</p>
<p>If these objects are in a to-many relationship of some kind, I'd use the relationship to manage the maximum number. (Override <code>add<Whatever>Object:</code> and delete the extraneous items then).</p>
<p>If you're just fetching them, then that's really your only opportunity to filter them out. If you're using an <code>NSArrayController</code>, you might be able to implement a subclass that detects when new objects are added and chops off the extra ones.</p>
http://stackoverflow.com/questions/1636406/how-do-you-create-a-custom-themed-nsbutton/1638127#16381275Answer by Alex for How do you create a custom themed NSButton?Alex2009-10-28T15:46:25Z2009-10-28T15:46:25Z<p>Actually, you need to subclass <code>NSButtonCell</code>. You should read <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ControlCell/ControlCell.html#//apple%5Fref/doc/uid/10000015" rel="nofollow">Apple's documentation</a> on this to gain a better understanding of how they interact. You probably will still want to subclass <code>NSButton</code> so that it will use your <code>NSButtonCell</code> subclass, too.</p>
<p>For a button, most of the work is done in <code>drawBezelWithFrame:inView:</code>. If you want to alter the way the text or image is drawn, you would override <code>drawText:withFrame:inView:</code> and <code>drawImage:withFrame:inView:</code>.</p>
http://stackoverflow.com/questions/1628058/managed-object-context-in-tab-bar-view/1631010#16310100Answer by Alex for Managed Object Context in Tab Bar ViewAlex2009-10-27T14:00:24Z2009-10-27T14:00:24Z<p>It sounds like you have a couple of problems.</p>
<ol>
<li>"Can't find entity" error -- this depends on which Managed Object Context you're using. If you created a separate MOC to manage the object you're editing (which is a good idea, by the way), make sure you assign it a Persistent Store Coordinator. This is how an MOC discovers what objects are available. If you're using the MOC created in the App Delegate, make sure you're spelling the name of the entity correctly.</li>
<li>No Navigation Bar in sheet -- When you push a view controller onto a navigation controller, its <code>navigationItem</code> is used to populate the navigation bar. When you present a view controller as a sheet, only the view controller is displayed. It is not embedded in a navigation controller. In order to get the navigation item to display, you'll need to create a new navigation controller with your view controller as the root, and then present the navigation controller's view.</li>
</ol>
http://stackoverflow.com/questions/1630629/faulting-a-coredata-relationship-when-fetching-the-main-entity/1630753#16307531Answer by Alex for Faulting a CoreData relationship when fetching the main entityAlex2009-10-27T13:19:13Z2009-10-27T13:19:13Z<p>You could manually fault in objects, but I don't think you'll gain anything. Whether you fault in all the objects at once, or you fault them in one at a time as needed, each object is still going to be faulted in individually.</p>
<p>I have written apps that do exactly what you describe, fault in a large amount of data to display in a table view, and have never noticed a performance penalty. Remember, only the objects that correspond to table view cells that will be displayed will be faulted in. </p>
<p>In general, I'd say don't try to outsmart Core Data. It's got years of performance optimizations in it at this point. While, intuitively, it may seem like faulting in 100 objects would require 100 database queries, this is not necessarily the case.</p>
http://stackoverflow.com/questions/1625187/coredata-find-minimum-of-calculated-property/1625875#16258750Answer by Alex for CoreData: Find minimum of calculated propertyAlex2009-10-26T16:48:35Z2009-10-26T16:48:35Z<p>Sorry, but doing arithmetic in an <code>NSPredicate</code> isn't supported. Only comparison operators can be used. And the news gets worse. You can't use a transient property in an <code>NSFetchRequest</code>. Only persistent properties can be used. If you really need this level of control in fetching your objects, Core Data may not be able to accommodate you.</p>
http://stackoverflow.com/questions/1618498/webview-in-core-animation-layer/1618663#16186632Answer by Alex for webview in core animation layerAlex2009-10-24T18:17:22Z2009-10-24T18:17:22Z<p>Views can contain layers, Views can contain other views, and layers can contain layers. But layers cannot contain views.</p>
<p>If you want to animate a <code>WebView</code>, your best bet would be to embed it in an <code>NSView</code> where you've called <code>setWantsLayer:YES</code> and then animating the <code>WebView</code>'s layer.</p>
http://stackoverflow.com/questions/1618503/design-pattern-for-core-data-iphone-app/1618578#16185783Answer by Alex for Design pattern for Core Data iPhone AppAlex2009-10-24T17:29:36Z2009-10-24T17:29:36Z<p>Core Data is not nearly as complicated as you describe.</p>
<p>Generally, an iPhone app has a "main" managed object context, which is generally owned by the app delegate. So long as you can get the app delegate (hint: <code>[[UIApplication sharedApplication] delegate]</code>) you have access to the managed object context. I like to define a static global variable to hold a reference to my app delegate to make life easier.</p>
<p>There's generally a one-to-one correspondence between <code>NSFetchedResultsController</code> instances and <code>UITableView</code> instances. Aside from populating table views, it's exceedingly rare that you would need an <code>NSFetchedResultsController</code>. If you have a number of similar views (e.g. a tab bar that lets you view the same data in different ways a la the iPod app), it would behoove you to create a single base class that configures the <code>NSFetchedResultsController</code> and derive your specific view controllers from that.</p>
<p>Now, when you create view controllers to edit an object, it's generally a good idea to do that in a separate managed object context. If the user cancels, you just discard the context and the changes go away. Again, you don't really need an <code>NSFetchedResultsController</code> for this because these views are only concerned with a single object.</p>
<p>When you're done editing, you <code>save:</code> the managed object context. The objects that manage your other managed object contexts should implement the <code>NSFetchedResultsControllerDelegate</code> methods to keep the table view in sync. Again, this can be implemented in a base class so you can generalize this functionality for related view controllers.</p>
http://stackoverflow.com/questions/1612829/unexplained-leaks-using-cfdictionaryref-and-abmutablemultivalueref/1614179#16141793Answer by Alex for Unexplained leaks using CFDictionaryRef and ABMutableMultiValueRefAlex2009-10-23T15:22:07Z2009-10-23T15:22:07Z<p>Here's your problem:</p>
<pre><code>CFDictionaryRef webService = CFDictionaryCreateCopy(NULL, ABMultiValueCopyValueAtIndex(webServices, i));
</code></pre>
<p><code>ABMultiValueCopyValueAtIndex</code> creates an object which is never assigned to a variable. It needs to be released, but never is. That's a memory leak.</p>
http://stackoverflow.com/questions/1605011/storing-identical-data-efficiently-in-a-core-data-data-model/1613839#16138391Answer by Alex for Storing identical data efficiently in a Core Data data modelAlex2009-10-23T14:28:17Z2009-10-23T14:28:17Z<p>My first question would be how do you plan to identify when two objects are using the same image? Is there a property on the image you can store and query to determine whether the image you're setting already exists? And how expensive, computationally, is that? If it takes a lot of time, you might end up optimizing for storage and impacting performance.</p>
<p>However, if you do have a way of doing this efficiently, you could create an <code>ImageBlob</code> entity to do what you describe. The entity that uses <code>ImageBlob</code>s should have an <code>imageBlob</code> or <code>imageBlobs</code> relationship with <code>ImageBlob</code>. <code>ImageBlob</code> should have an inverse relationship with a name like, for example, <code>users</code>.</p>
<p>In your code, when you want to reuse an <code>ImageBlob</code>, it's as simple as doing something like this:</p>
<pre><code>NSManagedObject *blob = // get the image blob
NSManagedObject *user = // get the user
[user setValue:blob forKey:@"imageBlob"]; // do this if it uses a single image
[[user mutableSetValueForKey:@"imageBlobs"] addObject:blob]; // do this if it uses multiple images
</code></pre>
<p>Another consideration you'll want to think about is what to do with blobs that are no longer needed. Presumably, you want to drop any images that aren't being used. To do this, you can sign up your application delegate or <code>NSPersistentDocument</code> subclass (depending on whether your app is document-based or not) for the <code>NSManagedObjectContextObjectsDidChangeNotification </code> notification. Whenever the managed object context changes, you can delete any unneeded images like this:</p>
<pre><code>- (void)managedObjectContextObjectsDidSave:(NSNotification *)notification {
NSManagedObjectContext *managedObjectContext = [notification object];
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
[fetchRequest setEntity:[NSEntity entityWithName:@"ImageBlob" inManagedObjectContext:managedObjectContext]];
[fetchRequest setPredicate:[NSPredicate predicateWithFormat:@"users.@count == 0"];
NSArray *unusedBlobs = [managedObjectContext executeFetchRequest:fetchRequest error:nil]; // Don't be stupid like me; catch and handle the error
[fetchRequest release];
for (NSManagedObject *blob in unusedBlobs) {
[managedObjectContext deleteObject:blob];
}
}
</code></pre>
http://stackoverflow.com/questions/1612356/coredate-deletion-rules-and-many-to-many-relationships/1613752#16137522Answer by Alex for CoreDate Deletion rules and many-to-many relationshipsAlex2009-10-23T14:14:14Z2009-10-23T14:14:14Z<p>A cascade rule will automatically delete the objects at the destination. So, if you delete a department, the employees will be deleted regardless of the number of departments they're in.</p>
<p>It sounds like the behavior you want is a little more nuanced, to delete only the "orphaned" employees -- i.e. those that don't have a department. When you delete a department, a good way of finding those would be to do something like this:</p>
<pre><code>NSManagedObject *doomedDepartment = // get the department to be deleted
NSSet *employees = [doomedDepartment valueForKey:@"employees"];
NSSet *orphanedEmployees = [employees filteredSetUsingPredicate:[NSPredicate predicateWithFormat:@"departments.@count == 1"]];
for (NSManagedObject *orphanedEmployee in orphanedEmployees) {
[managedObjectContext deleteObject:orphanedEmployee];
}
[managedObjectContext deleteObject:doomedDepartment];
</code></pre>
http://stackoverflow.com/questions/1608230/will-the-system-send-an-nswillbecomemultithreadednotification-when-i-create-posix/1608258#16082583Answer by Alex for Will the system send an NSWillBecomeMultiThreadedNotification when I create POSIX threads?Alex2009-10-22T16:02:09Z2009-10-22T16:02:09Z<p>No, this notification is sent by <code>NSThread</code>. If you're using ordinary pthreads, it won't be sent.</p>
http://stackoverflow.com/questions/1603817/what-would-you-do-instead-of-using-nsviewcontroller-to-be-compatible-with-10-4/1607878#16078782Answer by Alex for What would you do instead of using NSViewController to be compatible with 10.4?Alex2009-10-22T15:05:43Z2009-10-22T15:05:43Z<p>From working with <code>NSViewController</code> in Leopard, I can tell you that its functionality is very basic, and that you should be able to replicate it with fairly minimal effort.</p>
<p>Essentially, it has a <code>view</code> property/outlet, and an <code>initWithNibName:bundle:</code> method. Beyond that, it doesn't do anything especially fancy. It has some convenience things, like adopting <code>NSEditor</code>, and a <code>representedObject</code> property. You should be able to bang out an equivalent class in an hour or two.</p>
<p>Now, what you will give up if you do this is compatibility with later versions of Cocoa. Eventually, you'll probably drop 10.4 support and you'll be left with your class and the real <code>NSViewController</code>. When that happens, I'd recommend re-basing your custom view controller on Cocoa's <code>NSViewController</code>. If you've named the properties with the same names/data types as <code>NSViewController</code>, you should only have to drop the properties and methods you've declared yourself.</p>
http://stackoverflow.com/questions/1592246/setting-up-relationships-while-importing-core-data/1604044#16040442Answer by Alex for Setting up relationships while importing core data?Alex2009-10-21T22:34:56Z2009-10-21T22:34:56Z<p>If the <code>Department</code> objects have already been saved to a persistent store, then you can bring them into another managed object context. Since your objects will all have to live in the same persistent store anyway (as cross-store relationships are not allowed), you should be able to simply fetch the ones you need into <code>importMoc</code>.</p>
<p>For example:</p>
<pre><code>foreach (NSDictionary *record in employeeRecords) {
NSManagedObject *employee = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:importMoc];
// Configure employee however you do that
NSString *managerID = [record objectForKey:@"someKeyThatUniquelyIdentifiesTheManager"];
NSFetchRequest *managerFetchRequest = [[NSFetchRequest alloc] init];
[managerFetchRequest setEntity:[NSEntity entityForName:@"Manager" inManagedObjectContext:importMoc]];
[managerFetchRequest setPredicate:[NSPredicate predicateWithFormat:@"managerProperty == %@", managerID]];
NSArray *managers = [importMoc executeFetchRequest:managerFetchRequest error:nil]; // Don't be stupid like me and catch the error ;-)
[managerFetchRequest release];
if ([managers count] != 1) {
// You probably have problems if this happens
}
[employee setValue:[managers objectAtIndex:0] forKey:@"manager"];
}
</code></pre>
<p>You could also just do a single fetch request to get all of the managers into <code>importMoc</code> and then filter that array to locate the right one each time. That would probably be a lot more efficient. In other words, don't do what I just told you to do above :-)</p>
http://stackoverflow.com/questions/1603552/what-are-appdelegates-in-objective-c/1603890#16038904Answer by Alex for What are AppDelegates in Objective-C?Alex2009-10-21T21:55:49Z2009-10-21T21:55:49Z<p>Let's back up a little bit.</p>
<p>The square brackets (<code>[ ]</code>) are Objective-C's method calling syntax. So if Cocoa had a C# syntax, the equivalent syntax would be:</p>
<pre><code>TodoAppDelegate appDelegate = UIApplication.sharedApplication.delegate;
</code></pre>
<p>In C#, you would use a static class for a class that only has a single instance. In Cocoa, the Singleton pattern is used to accomplish this. A class method (in this case, <code>sharedApplication</code>) is used to retrieve the single instance of that class.</p>
<p>Delegates in Cocoa are not like the <code>delegate</code> keyword in C#, so don't be confused by that. In C#, you use the <code>delegate</code> keyword to reference a method. The delegate pattern in Cocoa is provided as an alternative to subclassing.</p>
<p>Many objects allow you to specify another object as a delegate. Delegates implement methods that those objects will call to notify them of certain events. In this case, <code>UIApplication</code> is the class that represents the current running application (similar to <code>System.Windows.Forms.Application</code>, for example). It sends messages to its delegate when things that affect the application happen (e.g. when the application launches, quits, gains or loses focus, and so on.)</p>
<p>Another Objective-C concept is the <code>protocol</code>. It is similar in principle to a .NET <code>interface</code>, except that methods can be marked as <code>@optional</code>, meaning they classes are not required to implement the methods marked that way. Delegates in the iPhone SDK are simply objects that conform to a specific protocol. In the case of <code>UIApplication</code>, the protocol delegates must conform to is <code>UIApplicationDelegate</code>.</p>
<p>Because it's not required to implement every method, this gives the delegate flexibility to decide which methods are worth implementing. If you wanted to, for example, perform some actions when the application finishes launching, you can implement a class that conforms to the <code>UIApplicationDelegate</code> protocol, set it as the <code>UIApplication</code> instance's <code>delegate</code>, and then implement <code>applicationDidFinishLaunching:</code>.</p>
<p><code>UIApplication</code> will determine if its delegate implements this method when the application finishes launching and, if it does, call that method. This gives you a chance to respond to this event without having to subclass <code>UIApplication</code>.</p>
<p>In iPhone applications, developers also frequently use the app delegate as a kind of top-level object. Since you don't usually subclass <code>UIApplication</code>, most developers keep their global application data in the app delegate.</p>
http://stackoverflow.com/questions/1598728/how-do-i-delete-an-entity-when-removing-it-from-an-array-controller/1601190#16011904Answer by Alex for How do I delete an entity when removing it from an array controller?Alex2009-10-21T14:27:31Z2009-10-21T14:27:31Z<p>The <code>NSArrayController</code> has two different behaviors when you're using Core Data. If it is configured to simply fetch objects directly from the managed object context, it will delete the objects when they are removed.</p>
<p>If you're binding the <code>contentSet</code> to another controller, like it sounds like you are in this case, the default behavior is to simply remove the object from the relationship. If you want to delete it, though, there is a "deletes object on remove" binding option, which will produce the result you want.</p>
http://stackoverflow.com/questions/1596651/nsarray-atomfeed-and-categories/1596713#15967131Answer by Alex for NSArray atomfeed and categoriesAlex2009-10-20T19:11:30Z2009-10-20T19:11:30Z<p>If I understand you correctly, you have an <code>NSArray</code> (you didn't say of what, so I'll assume <code>NSDictionary</code>) of Atom feed items, each of which has a category. What you want is a structure that groups the items by category into <code>NSArray</code>s.</p>
<p>The appropriate data structure, in my opinion, is an <code>NSDictionary</code> that maps categories onto arrays of items. Here's how I would do it:</p>
<pre><code>NSMutableDictionary *itemsByCategory = [NSMutableDictionary dictionary];
for (NSDictionary *item in allItems) {
NSString *category = [item objectForKey:@"category"];
NSMutableArray *categoryItems = [itemsByCategory objectForKey:category]; // You'll probably want to do some checking in case there is no category.
if (!categoryItems) {
categoryItems = [NSMutableArray array];
[itemsByCategory setObject:categoryItems forKey:category];
}
[categoryItems addObject:item];
}
</code></pre>
http://stackoverflow.com/questions/1589986/finding-duplicates-in-an-nsmutablearray/1590359#15903593Answer by Alex for Finding duplicates in an NSMutableArrayAlex2009-10-19T18:39:48Z2009-10-19T18:39:48Z<p>First question is: does order really matter? If not, then use an <code>NSMutableSet</code> or <code>NSMutableDictionary</code> (depending on what makes sense for your app)</p>
<p>The simplest way to eliminate duplicates is to prevent them from occurring in the first place. Before you add anything to your <code>NSMutableArray</code>, you could check to see if the value already exists. For example:</p>
<pre><code>- (void)addColor:(NSString *)color withID:(NSString *)id {
NSArray *duplicates = [myArray filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"id == %@", id]];
if ([duplicates count] > 0) {
// Optionally report an error/throw an exception
return;
}
}
</code></pre>
<p>Otherwise, you're probably best off getting a list of IDs using <code>valueForKeyPath:</code>, then sorting that array, and then running through it once to look for duplicates. It would go soemthing like this:</p>
<pre><code>- (NSSet *)checkForDuplicateIDs {
NSArray *allIDs = [myArray valueForKeyPath:@"id"];
NSArray *sortedIDs = [allIDs sortedArrayUsingSelector:@selector(compare:)];
NSString *previousID = nil;
NSMutableSet *duplicateIDs = [NSMutableSet set];
for (NSString *anID in sortedIDs) {
if ([previousID isEqualToString:anID]) {
[duplicateIDs addObject:anID];
}
previousID = anID;
}
return [[duplicateIDs copy] autorelease];
}
</code></pre>
<p>Keep in mind, though, that sorting the list is still, at best, probably an <code>O(n log(n))</code> operation. If you can at least keep your objects in order in your list, you can avoid the expense of sorting them. Preventing duplicates is best, keeping the list sorted is next best, and the algorithm I gave above is probably the worst.</p>
http://stackoverflow.com/questions/1590204/cocoa-bindings-update-nsobjectcontroller-manually/1590266#15902661Answer by Alex for Cocoa-Bindings : Update NSObjectController manually?Alex2009-10-19T18:19:23Z2009-10-19T18:19:23Z<p>Send a <code>commitEditing</code> message to your controller in the handler for the OK button. This will do what you're asking for. It's as simple as:</p>
<pre><code>- (void)save:sender {
if (![self.myObjectController commitEditing]) {
// Handle error when object controller can't commit editing
}
// Other stuff
}
</code></pre>
http://stackoverflow.com/questions/1570951/is-there-a-way-to-view-the-undo-stack/1572629#15726291Answer by Alex for Is there a way to view the undo stack?Alex2009-10-15T14:11:10Z2009-10-15T14:11:10Z<p>Are you using Core Data? Core Data provides automatic undo/redo support. Otherwise, the <code>NSUndoManager</code> will have an empty stack.</p>
<p>I suppose my question to you would be, why do you want to look at the stack? In practice, there's really no reason you should have to look at the undo manager's stack. If you're looking for advice on how to create undo actions and push them on the stack, here's a <a href="http://www.cocoadev.com/index.pl?NSUndoManager" rel="nofollow">pretty good overview</a> on how to do that. <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/UndoArchitecture/Articles/RegisteringUndo.html#//apple%5Fref/doc/uid/20000206" rel="nofollow">Apple's documentation</a> on the subject is also quite good. I'm especially fond of the invocation-based method.</p>
http://stackoverflow.com/questions/1571275/beginners-cocoa-binding-question/1572486#15724863Answer by Alex for Beginners Cocoa Binding QuestionAlex2009-10-15T13:45:41Z2009-10-15T13:45:41Z<p>When you bind the <code>NSObjectController</code>'s <code>contentObject</code> binding, what you're doing is telling the controller how to find the object you want it to edit. This is done using Key-Value Coding, where a string is used to navigate through potentially many object relationships to locate a value. At runtime, the object controller will call <code>[object valueForKeyPath:keyPath]</code> using the object you've bound the controller to and the key path you've specified in Interface Builder.</p>
<p>The File's Owner outlet in Interface Builder refers to the object specified as the <code>owner</code> when the NIB is loaded. In a document-based application, this is generally an <code>NSWindowController</code>. In a non-document application, the File's Owner is typically the <code>NSApplication</code> instance. But you didn't (and shouldn't) subclass <code>NSApplication</code>, so in your appilcation, File's Owner is not the right place to be looking for the object.</p>
<p>Instead, you've most likely added the object to your Application Delegate, so it makes sense to bind the object controller to the Application delegate in a non-document-based application. As a suggestion, I'd go back to the previous examples you've worked through and see if you can figure out how those object controllers find their content object. Once you see the connection between the object controller and the object it controls, bindings should make a lot more sense to you.</p>
http://stackoverflow.com/questions/1566874/is-open-gl-a-overkill-for-a-2d-card-game/1567042#15670421Answer by Alex for is Open GL a Overkill for a 2d Card Game ?Alex2009-10-14T15:22:14Z2009-10-14T15:22:14Z<p>Given that Core Animation uses OpenGL for rendering, you probably won't notice much of a difference in performance or memory usage. I don't think that you would gain anything by using OpenGL. Plus, you would have to handle all the animations on your own, as opposed to the prebuilt "set it and forget it" technique in Core Animation.</p>
http://stackoverflow.com/questions/1566698/is-it-possible-to-display-an-calayer-without-an-uiview/1566958#15669580Answer by Alex for Is it possible to display an CALayer without an UIView?Alex2009-10-14T15:10:49Z2009-10-14T15:10:49Z<p>You can add <code>CALayer</code>s as sublayers of another <code>CALayer</code>. Each individual layer does not have to be backed by a view, but the root layer in the hierarchy must be backed by a <code>UIView</code>.</p>
<p>The point is not to avoid having copies of the <code>CALayer</code>s, which are quite lightweight, but to avoid having copies of <code>UIViews</code> or, more specifically, the graphics contexts that back <code>UIView</code>s. Those take up considerably more memory.</p>
http://stackoverflow.com/questions/1566823/how-to-set-the-start-screen-in-iphone-app/1566858#15668586Answer by Alex for How to set the start screen in iPhone app?Alex2009-10-14T14:56:43Z2009-10-14T14:56:43Z<p>You need to add an image to your project called Default.png. This is what the iPhone will show while your application is launching.</p>
http://stackoverflow.com/questions/1566086/objective-c-instance-variables-out-of-scope-in-debugger/1566843#15668433Answer by Alex for Objective-C: instance variables out of scope in debuggerAlex2009-10-14T14:54:48Z2009-10-14T14:54:48Z<p>GDB is not an Objective-C compiler. The compiler knows about things like lexical scope within Objective-C methods, but GDB does not. It does, however, understand local variables.</p>
<p>In Objective-C, every method has an implicit <code>self</code> parameter passed to it when it's called. So when you look at <code>self->str</code>, GDB is interpreting that like it would interpret any other local variable evaluation.</p>
<p>When you try to evaluate <code>str</code> on its own, GDB will look for a local variable called <code>str</code> and, not finding one, reports that it's not in scope. This is not an error; this is the expected behavior.</p>
http://stackoverflow.com/questions/1640943/what-should-i-be-reading-for-intermediate-cocoa-programming-instruction/1640983#1640983Comment by Alex on What should I be reading for intermediate Cocoa programming instruction?Alex2009-10-29T20:22:24Z2009-10-29T20:22:24ZI upvoted, but I also want to specifically say that this book would be fantastic for someone who wants to understand Cocoa's internals a bit better. Many of the "patterns" are simply in-depth discussions of the way Objective-C handles certain programming problems.http://stackoverflow.com/questions/1644341/how-to-call-a-web-service-using-objective-c-on-the-iphoneComment by Alex on How to call a web service using Objective-C on the iPhoneAlex2009-10-29T20:20:57Z2009-10-29T20:20:57ZIt is a perfectly reasonable question, it has just been asked and answered before.http://stackoverflow.com/questions/1636406/how-do-you-create-a-custom-themed-nsbutton/1638127#1638127Comment by Alex on How do you create a custom themed NSButton?Alex2009-10-29T16:24:53Z2009-10-29T16:24:53ZThis is true. Any more, the only time you'd really need to subclass <code>NSButton</code> is if you were creating the controls programmatically.http://stackoverflow.com/questions/1632364/shake-visual-effect-on-iphone-not-shaking-the-device/1632493#1632493Comment by Alex on Shake visual effect on iPhone (NOT shaking the device)Alex2009-10-27T17:44:35Z2009-10-27T17:44:35ZYou could also create an animation and apply it to the view's <code>CALayer</code>. This would let you use, for example, a <code>CAKeyframeAnimation</code> which would let you fine-tune the animation. For an animation like this, you'll probably need that level of flexibility.http://stackoverflow.com/questions/1618496/will-using-a-custom-category-to-extend-uibutton-get-my-app-rejected/1618519#1618519Comment by Alex on Will using a custom category to extend UIButton get my app rejected?Alex2009-10-24T18:25:29Z2009-10-24T18:25:29ZSorry, but that's not correct. If you use a private API, you will almost certainly get rejected. Apple rejects such applications specifically because private APIs are fragile. While it's true that some applications that use private APIs get accepted anyway, you're far better off keeping away from those methods.http://stackoverflow.com/questions/1592246/setting-up-relationships-while-importing-core-data/1604044#1604044Comment by Alex on Setting up relationships while importing core data?Alex2009-10-22T04:55:07Z2009-10-22T04:55:07ZCorrect. The context only matters while the objects are in memory. Once they've been saved to the persistent store, they can be fetched into any context.http://stackoverflow.com/questions/1589928/how-do-i-insert-a-welcome-screen-to-my-navigation-based-iphone-app/1589998#1589998Comment by Alex on How do I insert a welcome screen to my Navigation-Based Iphone App?Alex2009-10-19T18:26:05Z2009-10-19T18:26:05ZI don't think he means a Default.png image. I think he means an initial view that the user sees when the app first starts.http://stackoverflow.com/questions/1573520/nsmutabledictionary-does-not-get-added-into-nsmutablearrayComment by Alex on NSMutableDictionary does not get added into NSMutableArrayAlex2009-10-15T18:13:12Z2009-10-15T18:13:12ZYep, it's a memory leak. If you do <code>[[item copy] autorelease]</code> you don't retain that extra reference.http://stackoverflow.com/questions/1566698/is-it-possible-to-display-an-calayer-without-an-uiview/1566958#1566958Comment by Alex on Is it possible to display an CALayer without an UIView?Alex2009-10-14T18:27:50Z2009-10-14T18:27:50ZGood to know. I had assumed UIViews suffer from the same limitations as NSViews.http://stackoverflow.com/questions/1503799/binding-nsslider-to-nstextfield-with-nil-minvalue/1504060#1504060Comment by Alex on Binding NSSlider to NSTextField with nil minValue?Alex2009-10-14T18:27:01Z2009-10-14T18:27:01ZI wouldn't disagree with that ;-)http://stackoverflow.com/questions/1555289/detecting-download-in-uiwebview/1555570#1555570Comment by Alex on Detecting Download in UIWebViewAlex2009-10-13T03:10:08Z2009-10-13T03:10:08ZThis is true. If you kick off an <code>NSURLConnection</code>, the delegate method <code>connection:didReceiveResponse:</code> gives you an <code>NSURLResponse</code>, which will have the MIME type. Kaboom.http://stackoverflow.com/questions/1555178/how-to-make-a-uitextview-scroll-horizontally-as-the-user-types/1555613#1555613Comment by Alex on How to make a UITextView scroll horizontally as the user types?Alex2009-10-12T21:26:56Z2009-10-12T21:26:56ZYou could try setting/overriding the <code>contentSize</code> property, but if that doesn't work, you're probably out of luck.http://stackoverflow.com/questions/1555823/set-custom-length-and-width-nswindow/1556881#1556881Comment by Alex on set custom length and width NSWindowAlex2009-10-12T21:17:15Z2009-10-12T21:17:15ZYep, <code>NSMakeSize</code> would be easier and more compact. I should have mentioned that in my answer. Thanks for saving me the effort of looking up <code>CGFloat</code> :-)http://stackoverflow.com/questions/1555823/set-custom-length-and-width-nswindow/1555872#1555872Comment by Alex on set custom length and width NSWindowAlex2009-10-12T20:47:32Z2009-10-12T20:47:32Z<code>NSString`s are not numbers. Of course the `NSRect</code> has no idea what to do with strings. It expects <code>CGFloat</code> values for <code>width</code> and <code>height</code>.http://stackoverflow.com/questions/1555289/detecting-download-in-uiwebview/1555570#1555570Comment by Alex on Detecting Download in UIWebViewAlex2009-10-12T17:20:10Z2009-10-12T17:20:10ZNot really, <code>webView:shouldStartLoadWithRequest:</code> is expecting you to return a value. You'd have to freeze your whole application for potentially several seconds to do a synchronous <code>NSURLRequest</code> to get the headers. It's a surprisingly tough problem.