User mmalc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T05:31:27Z http://stackoverflow.com/feeds/user/23233 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/499897/save-coredata-entities-in-nsuserdefaults/1093275#1093275 1 Answer by mmalc for Save CoreData-entities in NSUserDefaults mmalc 2009-07-07T16:07:24Z 2009-07-07T16:07:24Z <p>If you need to store a reference to a specific managed object, use the URI representation of its managed object ID:</p> <pre><code>NSURL *moIDURL = [[myManagedObject objectID] URIRepresentation]; </code></pre> <p>You can then save the URL to user defaults.</p> <p>To retrieve the managed object, you use:</p> <pre><code>NSManagedObjectID *moID = [myPersistentStoreCoordinator managedObjectIDForURIRepresentation:moIDURL]; NSManagedObject *myManagedObject = [myContext objectWithID:moID]; </code></pre> <p>The only caveat is that you must ensure that the original managed object ID is permanent -- this is not a problem if you've already saved the object, alternatively you can use <code>obtainPermanentIDsForObjects:error:</code>.</p> http://stackoverflow.com/questions/891091/how-do-you-restart-a-query-using-nsfetchedresultscontroller/1077683#1077683 1 Answer by mmalc for How do you restart a query using NSFetchedResultsController mmalc 2009-07-03T03:43:24Z 2009-07-03T03:43:24Z <p>Have you set your view controller as the fetched results controller's delegate and implemented the <a href="http://developer.apple.com/iphone/library/documentation/CoreData/Reference/NSFetchedResultsControllerDelegate%5FProtocol/Reference/Reference.html" rel="nofollow">NSFetchedResultsControllerDelegate protocol</a>? If so, you should not have to perform the fetch again, the fetched results controller will invoke the delegate methods in response to changes.</p> <p>(Note, though, the caution in <a href="http://developer.apple.com/iphone/library/documentation/CoreData/Reference/NSFetchedResultsController%5FClass/Reference/Reference.html#//apple%5Fref/occ/cl/NSFetchedResultsController" rel="nofollow">NSFetchedResultsController documentation</a> regarding the implementation of the table view data source methods.)</p> http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146792#146792 60 Answer by mmalc for What are those little Xcode tips & tricks you wish you knew about 2 years ago? mmalc 2008-09-28T21:34:41Z 2009-03-31T15:53:18Z <h2>Code completion etc.</h2> <p>Press Tab to accept the current completion.</p> <p>Sometimes the first completion Xcode presents is not the one you want. If you press Escape, Xcode presents a pop-up list from which you can select from all the available completions.</p> <h2>Next Argument</h2> <p>When you're editing a method with multiple arguments, press Control-/ to advance from one argument to the next.</p> http://stackoverflow.com/questions/61838/do-i-need-to-release-xib-resources/191935#191935 15 Answer by mmalc for Do I need to release xib resources? mmalc 2008-10-10T15:41:00Z 2008-12-02T17:53:37Z <p>If you follow what is now considered to be best practice, you <em>should</em> release outlet properties, because you should have retained them in the set accessor:</p> <pre><code>@interface MyController : MySuperclass { Control *uiElement; } @property (nonatomic, retain) IBOutlet Control *uiElement; @end @implementation MyController @synthesize uiElement; - (void)dealloc { [uiElement release]; [super dealloc]; } @end </code></pre> <p>The advantage of this approach is that it makes the memory management semantics explicit and clear, <em>and it works consistently across all platforms for all nib files</em>.</p> <p>One consideration here, though, is when your controller might dispose of its user interface and reload it dynamically on demand (for example, if you have a view controller that loads a view from a nib file, but on request -- say under memory pressure -- releases it, with the expectation that it can be reloaded if the view is needed again). In this situation, you want to make sure that when the main view is disposed of you also relinquish ownership of any other outlets so that they too can be deallocated. For UIViewController, you can deal with this issue by overriding <code>setView:</code> as follows:</p> <pre><code>- (void)setView:(UIView *)newView { if (newView == nil) { self.uiElement = nil; } [super setView:aView]; } </code></pre> <p>Unfortunately this gives rise to a further issue. Because UIViewController currently implements its <code>dealloc</code> method using the <code>setView:</code> accessor method (rather than simply releasing the variable directly), <code>self.anOutlet = nil</code> will be called in <code>dealloc</code> as well as in response to a memory warning... This will lead to a crash in <code>dealloc</code>.</p> <p>The remedy is to ensure that outlet variables are also set to <code>nil</code> in <code>dealloc</code>:</p> <pre><code>- (void)dealloc { // release outlets and set variables to nil [anOutlet release], anOutlet = nil; [super dealloc]; } </code></pre> http://stackoverflow.com/questions/51971/can-anyone-recommend-a-complete-objc-cocoa-or-cocoa-touch-tutorial/193890#193890 2 Answer by mmalc for Can anyone recommend a complete ObjC/Cocoa or Cocoa-Touch tutorial? mmalc 2008-10-11T09:25:54Z 2008-12-02T03:04:34Z <p>The "Hello World"-style tutorial provided in the Dev Center seems to be closer to the middle ground that you seek, even if you say you don't want a "Hello World" example:</p> <p><a href="http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhone101/Articles/chapter_1_section_1.html" rel="nofollow">Your First iPhone Application</a></p> <p>It strives to illustrate the fundamentals of all Cocoa development using as few lines of code as possible. It also provides explanations throughout of why the code is written as it is (and sometimes provides alternatives), and gives numerous references to background material.</p> http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/226968#226968 6 Answer by mmalc for What are those little Xcode tips & tricks you wish you knew about 2 years ago? mmalc 2008-10-22T18:21:47Z 2008-10-22T18:21:47Z <h2>Use the Class Browser to show inherited methods</h2> <p>Apple's API reference documentation does not show methods inherited from a superclass. Sometimes, though. it's useful to be able to see the full range of functionality available for a class -- including a custom class of your own. You can use the Class Browser (from the Project menu) to display a flat or hierarchical list of all the classes related to a current project. The upper pane on the right hand side of the browser window shows a list of methods associated with the object selected in the browser. You can use the Configure Options sheet to select "Show Inherited Members" to show inherited methods as well as those defined by the selected class itself. You click the small book symbol to go to the corresponding documentation.</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/217226#217226 2 Answer by mmalc for Understanding reference counting with Cocoa / Objective C mmalc 2008-10-20T00:42:12Z 2008-10-20T00:42:12Z <p>As ever, when people start trying to re-word the reference material they almost invariably get something wrong or provide an incomplete description.</p> <p>Apple provides a complete description of Cocoa's memory management system in <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html#//apple_ref/doc/uid/10000011" rel="nofollow">Memory Management Programming Guide for Cocoa</a>, at the end of which there is a brief but accurate summary of the <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Tasks/MemoryManagementRules.html#//apple_ref/doc/uid/20000994" rel="nofollow">Memory Management Rules</a>.</p> http://stackoverflow.com/questions/205386/cocoa-bad-habits/217217#217217 7 Answer by mmalc for Cocoa Bad Habits mmalc 2008-10-20T00:30:31Z 2008-10-20T00:30:31Z <h2>Using exceptions for control flow</h2> <p>(And other non-exceptional circumstances.)</p> <p>Since use of exceptions is brought up in another answer here and the <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ErrorHandlingCocoa/CreateCustomizeNSError/chapter_4_section_4.html" rel="nofollow">documentation</a> referred to in the comments does not stress this point particularly, it is worth emphasising that exceptions should now be used for normal control flow (as is common in some other environments). Exceptions in Cocoa are comparatively <em>extremely</em> expensive. If you want to communicate an error, use an <code>NSError</code> object and the <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ErrorHandlingCocoa/ErrorRespondRecover/chapter_3_section_2.html#//apple_ref/doc/uid/TP40001806-CH203-CJBHABAA" rel="nofollow">error-handling architecture</a> provided by Cocoa. Don't throw exceptions.</p> http://stackoverflow.com/questions/131062/iphone-viewwillappear-not-firing/211091#211091 4 Answer by mmalc for iphone viewWillAppear not firing mmalc 2008-10-17T04:35:39Z 2008-10-17T04:35:39Z <p>If you use a navigation controller and set its delegate, then the view{Will,Did}{Appear,Disappear} methods are not invoked.</p> <p>You need to use the navigation controller delegate methods instead:</p> <pre><code>navigationController:willShowViewController:animated: navigationController:didShowViewController:animated: </code></pre> http://stackoverflow.com/questions/64881/why-is-my-cocoa-program-getting-excbadaccess-during-startup/209000#209000 2 Answer by mmalc for Why is my cocoa program getting EXC_BAD_ACCESS during startup? mmalc 2008-10-16T15:21:03Z 2008-10-16T15:21:03Z <p>This is typically indicative of a memory management error.</p> <p>Make sure all your outlet declarations follow best practice:</p> <pre><code>@interface MyClass : MySuperclass { UIClass *myOutlet; } @property (nonatomic, retain) IBOutlet UIClass *myOutlet; @end </code></pre> <p>This format ensures that you get memory management right on any platform with any superclass.</p> <p>Check any <code>awakeFromNib</code> methods to ensure that you're not over-releasing objects etc.</p> http://stackoverflow.com/questions/13725/in-cocoa-do-you-prefer-nsinteger-or-just-regular-int-and-why/199472#199472 19 Answer by mmalc for In Cocoa do you prefer NSInteger or just regular int, and why? mmalc 2008-10-13T23:48:46Z 2008-10-14T14:52:48Z <h2>Quantisation issues for 64-bit runtime</h2> <p>In some situations there may be good reason to use standard types instead of <code>NSInteger</code>: "unexpected" memory bloat in a 64-bit system.</p> <p>Clearly if an integer is 8 instead of 4 bytes, the amount of memory taken by values is doubled. Given that not every value is an integer, though, you should typically not expect the memory footprint of your application to double. However, the way that Mac OS X allocates memory changes depending on the amount of memory requested.</p> <p>Currently, if you ask for 512 bytes or fewer, <code>malloc</code> rounds up to the next multiple of 16 bytes. If you ask for more than 512 bytes, however, <code>malloc</code> rounds up to the next multiple of 512 (at least 1024 bytes). Suppose then that you define a class that -- amongst others -- declares five <code>NSInteger</code> instance variables, and that on a 32-bit system each instance occupies, say, 272 bytes. On a 64-bit system, instances would in theory require 544 bytes. But, because of the memory allocation strategy, each will actually occupy 1024 bytes (an almost fourfold increase). If you use a large number of these objects, the memory footprint of your application may be considerably greater than you might otherwise expect. If you replaced the <code>NSInteger</code> variables with <code>sint_32</code> variables, you would only use 512 bytes.</p> <p>When you're choosing what scalar to use, therefore, make sure you choose something sensible. Is there any reason why you need a value greater than you needed in your 32-bit application? Using a 64-bit integer to count a number of seconds is unlikely to be necessary...</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/195969#195969 8 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-12T20:14:24Z 2008-10-12T20:14:24Z <h2>Think about nil values</h2> <p>As <a href="http://stackoverflow.com/questions/156395/sending-a-message-to-nil">this question</a> notes, messages to <code>nil</code> are valid in Objective-C. Whilst this is frequently an advantage -- leading to cleaner and more natural code -- the feature can occasionally lead to peculiar and difficult-to-track-down bugs if you get a <code>nil</code> value when you weren't expecting it. </p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/195944#195944 4 Answer by mmalc for Sending a message to nil? mmalc 2008-10-12T20:02:55Z 2008-10-12T20:02:55Z <p>In the quotation from the documentation, there are two separate concepts -- perhaps it might be better if the documentation made that more clear:</p> <blockquote> <p>There are several patterns in Cocoa that take advantage of this fact.</p> <p>The value returned from a message to nil may also be valid:</p> </blockquote> <p>The former is probably more relevant here: typically being able to send messages to <code>nil</code> makes code more straightforward -- you don't have to check for null values everywhere. The canonical example is probably the accessor method:</p> <pre><code>- (void)setValue:(MyClass *)newValue { if (value != newValue) { [value release]; value = [newValue retain]; } } </code></pre> <p>If sending messages to <code>nil</code> were not valid, this method would be more complex -- you'd have to have two additional checks to ensure <code>value</code> and <code>newValue</code> are not <code>nil</code> before sending them messages.</p> <p>The latter point (that values returned from a message to <code>nil</code> are also typically valid), though, adds a multiplier effect to the former. For example:</p> <pre><code>if ([myArray count] &gt; 0) { // do something... } </code></pre> <p>This code again doesn't require a check for <code>nil</code> values, and flows naturally...</p> <p>All this said, the additional flexibility that being able to send messages to <code>nil</code> does come at some cost. There is the possibility that you will at some stage write code that fails in a peculiar way because you didn't take into account the possibility that a value might be <code>nil</code>.</p> http://stackoverflow.com/questions/192721/why-shouldnt-i-use-obective-c-2-0-accessors-in-init-dealloc/193880#193880 10 Answer by mmalc for Why shouldn't I use Obective C 2.0 accessors in init/dealloc? mmalc 2008-10-11T09:08:32Z 2008-10-12T17:07:16Z <p>You answered your own question:</p> <ol> <li>Performance may be a perfectly adequate reason in itself (especially if your accessors are atomic).</li> <li>You should avoid any side-effects that accessors may have.</li> </ol> <p>The latter is particularly an issue if your class may be subclassed.</p> <p>It's not clear, though, why this is addressed specifically at <em>Objective-C 2</em> accessors? The same principles apply whether you use declared properties or write accessors yourself.</p> http://stackoverflow.com/questions/193288/what-is-the-cost-of-using-autorelease-in-cocoa/193640#193640 13 Answer by mmalc for What is the cost of using autorelease in Cocoa? mmalc 2008-10-11T04:23:37Z 2008-10-11T04:23:37Z <p>There are two costs:</p> <ol> <li><p>(Assuming you have an option to avoid autoreleased objects.) You effectively unnecessarily extend the lifetime of your objects. This can mean that your memory footprint grows -- unnecessarily. On a constrained platform, this can mean that your application is terminated if it exceeds a limit. Even if you don't exceed a limit, it may cause your system to start swapping, which is very inefficient.</p></li> <li><p>The additional overhead of finding the current autorelease pool, adding the autoreleased object to it, and then releasing the object at the end (an extra method call). This may not be a large overhead, but it can add up.</p></li> </ol> <p>Best practice on any platform is to try to avoid autorelease if you can.</p> <p>To answer the questions:</p> <blockquote> <p>Ultimately should I use a strategy where everything is autoreleased and using retain/release should be the exception to the rule for specific cases?</p> </blockquote> <p>Quite the opposite.</p> <blockquote> <p>Or should I generally be using retain/release with autorelease being the exception for returned objects from convenience methods like [NSString stringWithEtc...] ?</p> </blockquote> <p>You should <em>always</em> use retain/release if you can -- in the case of <code>NSString</code> there is typically no need to use <code>stringWithEtc</code> methods as there are <code>initWithEtc</code> equivalents.</p> <p>See also <a href="http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa#175874">this question</a>.</p> http://stackoverflow.com/questions/179665/nsmutablearray-destruction/190099#190099 1 Answer by mmalc for NSMutableArray destruction mmalc 2008-10-10T04:13:29Z 2008-10-10T04:33:26Z <p>How did you create the objects that are leaking? If you did something like this:</p> <pre><code>- (void)addObjectsToArray { [list addObject:[[MyClass alloc] init]; OtherClass *anotherObject = [[OtherClass alloc] init]; [list addObject:anotherObject]; } </code></pre> <p>then you will leak two objects when list is deallocated.</p> <p>You should replace any such code with:</p> <pre><code>- (void)addObjectsToArray { MyClass *myObject = [[MyClass alloc] init]; [list addObject:myObject]; [myObject release]; OtherClass *anotherObject = [[OtherClass alloc] init]; [list addObject:anotherObject]; [anotherObject release]; } </code></pre> <p>In more detail:</p> <p>If you follow the first pattern, you've created two objects which, according to the <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Tasks/MemoryManagementRules.html" rel="nofollow">Cocoa memory management rules</a> you own. It's your responsibility to relinquish ownership. If you don't, the object will never be deallocated and you'll see a leak.</p> <p>You don't see a leak immediately, though, because you pass the objects to the array, which also takes ownership of them. The leak will only be recognised when you remove the objects from the array or when the array itself is deallocated. When either of those events occurs, the array relinquishes ownership of the objects and they'll be left "live" in your application, but you won't have any references to them.</p> http://stackoverflow.com/questions/176373/specific-help-with-xcode-project-template-that-is-not-doing-substitution-in-file/181758#181758 1 Answer by mmalc for Specific help with Xcode Project Template that is not doing substitution in file contents mmalc 2008-10-08T07:59:58Z 2008-10-09T17:00:55Z <p>Further to Chris' answer ("There are two styles of templates..."), you can find examples of the new style in the templates for another platform...</p> <p>The following excerpt shows examples of a few typical substitution variables using triple underbars; if you use these in place of the guillamot-based variables in your Foo___BarDelegate.m, it should work.</p> <pre><code>// // ___PROJECTNAMEASIDENTIFIER___AppDelegate.m // ___PROJECTNAME___ // // Created by ___FULLUSERNAME___ on ___DATE___. // Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved. // #import "___PROJECTNAMEASIDENTIFIER___AppDelegate.h" @implementation ___PROJECTNAMEASIDENTIFIER___AppDelegate </code></pre> http://stackoverflow.com/questions/181268/how-can-i-add-an-additional-view-to-my-iphone-app/186238#186238 2 Answer by mmalc for How can I add an additional "view" to my iphone app? mmalc 2008-10-09T07:19:40Z 2008-10-09T07:19:40Z <p>There are numerous examples that show how to manage multiple full-screen views -- each view should typically be managed by a separate view controller. Check the Xcode templates for an example of how you can set up a "flip" view.</p> http://stackoverflow.com/questions/185780/modifying-nsdate-to-represent-1-month-from-today/186104#186104 5 Answer by mmalc for Modifying NSDate to represent 1 month from today mmalc 2008-10-09T06:20:02Z 2008-10-09T06:20:02Z <p>(Almost the same as <a href="http://stackoverflow.com/posts/edit/181495">this question</a>.)</p> <p>From the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSCalendarDate_Class/Reference/Reference.html" rel="nofollow">documentation</a>:</p> <blockquote> <p>Use of NSCalendarDate strongly discouraged. It is not deprecated yet, however it may be in the next major OS release after Mac OS X v10.5. For calendrical calculations, you should use suitable combinations of NSCalendar, NSDate, and NSDateComponents, as described in Calendars in <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/DatesAndTimes/DatesAndTimes.html" rel="nofollow">Dates and Times Programming Topics for Cocoa</a>.</p> </blockquote> <p>Following that advice:</p> <pre><code>NSDate *today = [NSDate date]; NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]; NSDateComponents *components = [[NSDateComponents alloc] init]; components.month = 1; NSDate *nextMonth = [gregorian dateByAddingComponents:components toDate:today options:0]; [components release]; NSDateComponents *nextMonthComponents = [gregorian components:NSYearCalendarUnit | NSMonthCalendarUnit fromDate:nextMonth]; NSDateComponents *todayDayComponents = [gregorian components:NSDayCalendarUnit fromDate:today]; nextMonthComponents.day = todayDayComponents.day; NSDate *nextMonthDay = [gregorian dateFromComponents:nextMonthComponents]; [gregorian release]; </code></pre> <p>There may be a more direct or efficient implementation, but this should be accurate and should point in the right direction.</p> http://stackoverflow.com/questions/184985/linking-files-owners-and-view-controller-iphone-sdk/185060#185060 2 Answer by mmalc for Linking File's Owners and View Controller [iPhone SDK] mmalc 2008-10-08T21:49:35Z 2008-10-08T21:49:35Z <p>(This doesn't appear to be specific to iPhone -- it's a general class of problem for any platform.)</p> <p>It's barely clear what this means: "Now when I click my new xib, and reference a class identity with EditorViewController, no auto complete happens, which to me implies that it has no such awareness of a EditorViewClass."</p> <p>Do you mean that you selected the File's Owner and tried to set its class to EditorViewController, but Interface Builder didn't autocomplete the class name for you?</p> <p>If this is the case, is the xib file associated with the project?</p> <p>Other points that aren't directly relevant:</p> <p>Best practice is now that IBOutlet be associated with the property:</p> <pre><code>@interface EditorViewController : UIViewController { UITextField *field; } @property(nonatomic, retain) IBOutlet UITextField *field; @end </code></pre> <p>You should also release the text field in <code>dealloc</code>:</p> <pre><code>-(void)dealloc { [textField release]; [super dealloc]; } </code></pre> <p>The formatting of your question makes it difficult to see what code you've written. The terminology is also "odd" -- outlet is not a verb:</p> <p>"What are some of the possible idiosyncrasies in this process that I'm overlooking that's not allowing me to outlet my view to a controller?" do you mean: "Is there anything I may have overlooked that means I can't connect my controller's view outlet to the view in Interface Builder?"</p> http://stackoverflow.com/questions/181459/is-there-a-better-way-to-find-midnight-tomorrow/181495#181495 10 Answer by mmalc for Is there a better way to find midnight tomorrow? mmalc 2008-10-08T05:56:35Z 2008-10-08T20:29:35Z <p>From the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSCalendarDate_Class/Reference/Reference.html" rel="nofollow">documentation</a>:</p> <blockquote> <p>Use of NSCalendarDate strongly discouraged. It is not deprecated yet, however it may be in the next major OS release after Mac OS X v10.5. For calendrical calculations, you should use suitable combinations of NSCalendar, NSDate, and NSDateComponents, as described in Calendars in <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/DatesAndTimes/DatesAndTimes.html" rel="nofollow">Dates and Times Programming Topics for Cocoa</a>.</p> </blockquote> <p>Following that advice:</p> <pre><code>NSDate *today = [NSDate date]; NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]; NSDateComponents *components = [[NSDateComponents alloc] init]; components.day = 1; NSDate *tomorrow = [gregorian dateByAddingComponents:components toDate:today options:0]; [components release]; NSUInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit; components = [gregorian components:unitFlags fromDate:tomorrow]; components.hour = 0; components.minute = 0; NSDate *tomorrowMidnight = [gregorian dateFromComponents:components]; [gregorian release]; </code></pre> <p>(I'm not sure offhand if this is the most efficient implementation, but it should serve as a pointer in the right direction.)</p> <p>Note: In theory you can reduce the amount of code here by allowing a date components object with values greater than the range of normal values for the component (e.g. simply adding 1 to the day component, which might result in its having a value of 32). However, although <code>dateFromComponents:</code> <em>may</em> tolerate out-of-bounds values, it's not guaranteed to. You're strongly encouraged not to rely on it.</p> http://stackoverflow.com/questions/1939/howto-articles-for-iphone-development-objective-c/181712#181712 0 Answer by mmalc for Howto articles for iPhone development, Objective C mmalc 2008-10-08T07:44:24Z 2008-10-08T07:44:24Z <h2>Simple iPhone application tutorial</h2> <p>Apple's iPhone Dev Center does provide a tutorial which covers writing a complete, simple application. It uses small blocks of code that are given both inline explanation and supplemented with numerous references to other documentation that give a complete treatment of the subject. It even explains how to start Interface Builder and add a text field and change the text...</p> <p>If you have access to the SDK, see "<a href="http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhone101/Articles/chapter_1_section_1.html" rel="nofollow">Your First iPhone Application</a>".</p> http://stackoverflow.com/questions/177228/whats-the-best-way-to-find-out-the-installed-version-of-the-iphone-sdk/181179#181179 2 Answer by mmalc for What's the best way to find out the installed version of the iPhone SDK? mmalc 2008-10-08T02:59:47Z 2008-10-08T02:59:47Z <p>In general, you get the version number for any SDK from the CoreServices/SystemVersion plist file:</p> <p><em>$Developer</em>/Platforms/<em>$Platform</em>.platform/Developer/SDKs/<em>$SDK</em>.sdk/System/Library/CoreServices/SystemVersion.plist.</p> <p>You should see an entry for the ProductBuildVersion.</p> http://stackoverflow.com/questions/65427/how-does-the-nsautoreleasepool-autorelease-pool-work/181043#181043 3 Answer by mmalc for How does the NSAutoreleasePool autorelease pool work? mmalc 2008-10-08T01:14:52Z 2008-10-08T01:14:52Z <h2>NSAutoreleasePool: drain vs. release</h2> <p>Since the function of <code>drain</code> and <code>release</code> seem to be causing confusion, it may be worth clarifying here (although this is covered in <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSAutoreleasePool_Class/Reference/Reference.html#//apple_ref/occ/instm/NSAutoreleasePool/drain" rel="nofollow">the documentation</a>...).</p> <p>Strictly speaking, from the big picture perspective <code>drain</code> is <em>not</em> equivalent to <code>release</code>:</p> <p>In a reference-counted environment, <code>drain</code> does perform the same operations as <code>release</code>, so the two are in that sense equivalent. To emphasise, this means you do <em>not</em> leak a pool if you use <code>drain</code> rather than <code>release</code>.</p> <p>In a garbage-collected environment, <code>release</code> is a no-op. Thus it has no effect. <code>drain</code>, on the other hand, contains a hint to the collector that it should "collect if needed". Thus in a garbage-collected environment, using <code>drain</code> helps the system balance collection sweeps.</p> http://stackoverflow.com/questions/180549/learn-c-first-before-learning-objective-c/180782#180782 12 Answer by mmalc for Learn C first before learning Objective-C mmalc 2008-10-07T23:06:39Z 2008-10-08T00:51:43Z <p>You can readily enough learn C and Objective-C at the same time -- there's certainly no need to learn the minutiae of C (including pointer arithmetic and so on) before starting with Objective-C's additions to the language, and as a novice programmer getting underway with Objective-C quickly may help you to start "thinking in objects" more quickly.</p> <p>In terms of available resources, Apple's documentation does typically assume familiarity with C, so starting with <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/chapter_1_section_1.html" rel="nofollow">The Objective-C 2.0 Programming Language</a> won't be of much benefit to you. I would invest in a copy of Programming in Objective-C by Stephen Kochan (depending on how quickly you want to get underway, you may consider waiting for the second edition):</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0672325861" rel="nofollow">http://www.amazon.com/Programming-Objective-C-Developers-Library-Stephen/dp/0672325861/</a> <a href="http://rads.stackoverflow.com/amzn/click/0321566157" rel="nofollow">http://www.amazon.com/Programming-Objective-C-2-0-Developers-Library/dp/0321566157/</a></p> <p>It assumes no prior experience, and teaches you Objective-C and as much C as you need.</p> <p>If you're feeling a little ambitious, you might start with <a href="http://cocoadevcentral.com/articles/000081.php" rel="nofollow">Scott Stevenson's "Learn C" Tutorial</a>, but it does have some prerequisites ("You should already know at least one scripting or programming language, including functions, variables and loops. You'll also need to type commands into the Mac OS X Terminal.").</p> <p>(Just for the record and for context: I learned both at the same time back in 1991 -- it didn't seem to do me any harm. I did, though, have a <em>background</em> in BASIC, Pascal, Logo, and LISP.)</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/175874#175874 30 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-06T19:45:30Z 2008-10-06T19:45:30Z <h2>Avoid autorelease</h2> <p>Since you typically(1) don't have direct control over their lifetime, autoreleased objects can persist for a comparatively long time and unnecessarily increase the memory footprint of your application. Whilst on the desktop this may be of little consequence, on more constrained platforms this can be a significant issue. On all platforms, therefore, and especially on more constrained platforms, it is considered best practice to avoid using methods that would lead to autoreleased objects and instead you are encouraged to use the alloc/init pattern.</p> <p>Thus, rather than:</p> <pre><code>aVariable = [AClass convenienceMethod]; </code></pre> <p>where able, you should instead use:</p> <pre><code>aVariable = [[AClass alloc] init]; // do things with aVariable [aVariable release]; </code></pre> <p>When you're writing your own methods that return a newly-created object, you can take advantage of <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Tasks/MemoryManagementRules.html#//apple_ref/doc/uid/20000994" rel="nofollow">Cocoa's naming convention</a> to flag to the receiver that it must be released by prepending the method name with "new".</p> <p>Thus, instead of:</p> <pre><code>- (MyClass *)convenienceMethod { MyClass *instance = [[[self alloc] init] autorelease]; // configure instance return instance; } </code></pre> <p>you could write:</p> <pre><code>- (MyClass *)newInstance { MyClass *instance = [[self alloc] init]; // configure instance return instance; } </code></pre> <p>Since the method name begins with "new", consumers of your API know that they're responsible for releasing the received object (see, for example, <a href="http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSObjectController_Class/Reference/Reference.html#//apple_ref/doc/uid/20002044-BBCEAICF" rel="nofollow">NSObjectController's <code>newObject</code> method</a>).</p> <p>(1) You can take control by using your own local autorelease pools. For more on this, see <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Concepts/AutoreleasePools.html#//apple_ref/doc/uid/20000047" rel="nofollow">Autorelease Pools</a>.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/175134#175134 11 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-06T16:49:19Z 2008-10-06T16:49:19Z <h2>Sort strings as the user wants</h2> <p>When you sort strings to present to the user, you should not use the simple <code>compare:</code> method. Instead, you should always use localized comparison methods such as <code>localizedCompare:</code> or <code>localizedCaseInsensitiveCompare:</code>.</p> <p>For more details, see <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/Strings/Articles/SearchingStrings.html" rel="nofollow">Searching, Comparing, and Sorting Strings</a>.</p> http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/175118#175118 32 Answer by mmalc for What are best practices that you use when writing Objective-C and Cocoa? mmalc 2008-10-06T16:46:23Z 2008-10-06T16:46:23Z <h2>Don't use unknown strings as format strings</h2> <p>When methods or functions take a format string argument, you should make sure that you have control over the content of the format string.</p> <p>For example, when logging strings, it is tempting to pass the string variable as the sole argument to <code>NSLog</code>:</p> <pre><code> NSString *aString = // get a string from somewhere; NSLog(aString); </code></pre> <p>The problem with this is that the string may contain characters that are interpreted as format strings. This can lead to erroneous output, crashes, and security problems. Instead, you should substitute the string variable into a format string:</p> <pre><code> NSLog(@"aString: %@", aString); </code></pre> http://stackoverflow.com/questions/106627/memory-management-in-objective-c/146720#146720 10 Answer by mmalc for Memory Management in Objective-C mmalc 2008-09-28T20:54:03Z 2008-10-06T15:52:56Z <p>It is generally not useful to repeat the basic rules of memory management, since almost invariably you make a mistake or describe them incompletely -- as is the case in the answers provided by 'heckj' and 'benzado'...</p> <p>The fundamental rules of memory management are provided in Apple's documentation in <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Tasks/MemoryManagementRules.html" rel="nofollow">Memory Management Rules</a>.</p> <p>Apropos of the answer from 'www.stray-bits.com': stating that objects returned from "non-owning" methods are "autoreleased" is also at best misleading. You should typically not think in terms of whether or not something is "autoreleased", but simply consider the memory management rules and determine whether by those conventions you own the returned objet. If you do, you need to relinquish ownership...</p> <p>One counter-example (to thinking in terms of autoreleased objects) is when you're considering performance issues related to methods such as <code>stringWithFormat:</code>. Since you typically(1) don't have direct control over the lifetime of these objects, they can persist for a comparatively long time and unnecessarily increase the memory footprint of your application. Whilst on the desktop this <em>may</em> be of little consequence, on more constrained platforms this can be a significant issue. It is therefore considered best practice on all platforms to use the <code>alloc</code>/<code>init</code> pattern, and on more constrained platforms, where possible you are strongly discouraged from using any methods that would lead to autoreleased objects.</p> <p>(1) You can take control by using your own local autorelease pools. For more on this, see <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Concepts/AutoreleasePools.html#//apple_ref/doc/uid/20000047" rel="nofollow">Apple's Memory Management Programming Guide</a>.</p> http://stackoverflow.com/questions/169034/memory-leaking-with-nskeyedunarchiver-decodeobjectforkey/174835#174835 0 Answer by mmalc for Memory leaking with [NSKeyedUnarchiver decodeObjectForKey] mmalc 2008-10-06T15:43:36Z 2008-10-06T15:50:42Z <h2>Reducing peak memory footprint</h2> <p>In general, it is considered best practice to avoid generating autoreleased objects.</p> <p>[Most of this paragraph amended from <a href="http://stackoverflow.com/questions/106627/memory-management-in-objective-c#146720">this question</a>.] Since you typically(1) don't have direct control over their lifetime, autoreleased objects can persist for a comparatively long time and unnecessarily increase the memory footprint of your application. Whilst on the desktop this <em>may</em> be of little consequence, on more constrained platforms this can be a significant issue. On all platforms, therefore, and especially on more constrained platforms, where possible you are strongly discouraged from using methods that would lead to autoreleased objects and instead encouraged to use the alloc/init pattern.</p> <p>I would suggest replacing this:</p> <pre><code>theData = [NSData dataWithContentsOfFile:inFile]; </code></pre> <p>with:</p> <pre><code>theData = [[NSData alloc] initWithContentsOfFile:inFile]; </code></pre> <p>then at the end of the method add:</p> <pre><code>[theData release]; </code></pre> <p>This means that <code>theData</code> will be deallocated before the method exits. You should end up with:</p> <pre><code>- (void)readVenueArchiveFile:(NSString *)inFile key:(NSString *)inKey { NSMutableData *theData; NSKeyedUnarchiver *decoder; theData = [[NSData alloc] initWithContentsOfFile:inFile]; decoder = [[NSKeyedUnarchiver alloc] initForReadingWithData:theData]; ListClassName *decodedList = [decoder decodeObjectForKey:inKey]; self.venueIOList = decodedList; [decoder finishDecoding]; [decoder release]; [theData release]; </code></pre> <p>}</p> <p>This makes the memory management semantics clear, and reclaims memory as quickly as possible.</p> <p>(1) You can take control by using your own local autorelease pools. For more on this, see <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Concepts/AutoreleasePools.html#//apple_ref/doc/uid/20000047" rel="nofollow">Apple's Memory Management Programming Guide</a>.</p> http://stackoverflow.com/questions/13725/in-cocoa-do-you-prefer-nsinteger-or-just-regular-int-and-why/199472#199472 Comment by mmalc on In Cocoa do you prefer NSInteger or just regular int, and why? mmalc 2009-08-13T14:32:10Z 2009-08-13T14:32:10Z It's not clear what the issue is here: My comments pertain directly to Cocoa, and an important consideration when you choose the type to represent a variable. Just because you're using Cocoa doesn't mean you never have to consider factors related to application performance... http://stackoverflow.com/questions/891091/how-do-you-restart-a-query-using-nsfetchedresultscontroller/1077683#1077683 Comment by mmalc on How do you restart a query using NSFetchedResultsController mmalc 2009-07-07T15:52:06Z 2009-07-07T15:52:06Z What is the exception, and in what method? http://stackoverflow.com/questions/382576/do-i-need-to-release-iboutlets-when-using-loadnibnamed-method/385472#385472 Comment by mmalc on Do I need to release IBOutlets when using loadNibNamed: method? mmalc 2009-01-21T02:56:27Z 2009-01-21T02:56:27Z Re &quot;In other words, because you haven't specified these entries as @property&quot;: declaring a property has nothing to do with it. It's the presence or absence of the accessors themselves that's important, not the syntactic sugar. http://stackoverflow.com/questions/382576/do-i-need-to-release-iboutlets-when-using-loadnibnamed-method/385472#385472 Comment by mmalc on Do I need to release IBOutlets when using loadNibNamed: method? mmalc 2009-01-21T02:54:49Z 2009-01-21T02:54:49Z self.outletName = nil; No, do <i>not</i> do this; you should not use accessor methods in dealloc. http://stackoverflow.com/questions/363893/best-practice-in-cleaning-up-memory-for-iphone-apps/364098#364098 Comment by mmalc on Best practice in cleaning up memory for iPhone apps? mmalc 2009-01-21T02:53:12Z 2009-01-21T02:53:12Z &quot;If obj1 and obj2 are properties using @synthesize-d accessors, then method 1 and method 2 are equivalent.&quot; No, they're not. Method 1 invokes an accessor, with possible side-effects, method 2 does not. You should <i>not</i> use method 2. http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/267594#267594 Comment by mmalc on Understanding reference counting with Cocoa / Objective C mmalc 2008-12-02T04:01:20Z 2008-12-02T04:01:20Z The &quot;Very Simple Rules For Memory Management In Cocoa&quot; article is in several respects out of date -- in particular &quot;Objects created using convenience constructors (e.g. NSString's stringWithString) are considered autoreleased.&quot; is not right -- it is simply &quot;not owned by the recipient&quot;. http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/267594#267594 Comment by mmalc on Understanding reference counting with Cocoa / Objective C mmalc 2008-12-02T04:00:32Z 2008-12-02T04:00:32Z ... NSString *foo = [self getBar]; // still no need to retain or release This is wrong. Whoever invokes getBar doesn't know the implementation details, so <i>should</i> retain/release (typically via accessors) if they want to use it outside of the current scope. http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/267594#267594 Comment by mmalc on Understanding reference counting with Cocoa / Objective C mmalc 2008-12-02T03:58:45Z 2008-12-02T03:58:45Z ... &quot;The system MAY release the object any time after the current event cycle.&quot; This makes the system sound rather less deterministic than it is... http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/267594#267594 Comment by mmalc on Understanding reference counting with Cocoa / Objective C mmalc 2008-12-02T03:58:02Z 2008-12-02T03:58:02Z &quot;Autorelease: docs say it will trigger a release &quot;at some point in the future.&quot; WHEN?!&quot; The docs are clear on that point: &quot;autorelease just means “send a release message later” (for some definition of later—see “Autorelease Pools”).&quot; Exacely when depends on the autorelease pool stack... http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/49508#49508 Comment by mmalc on Understanding reference counting with Cocoa / Objective C mmalc 2008-12-02T03:52:54Z 2008-12-02T03:52:54Z This is incomplete and in places misleading at best. http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/6592#6592 Comment by mmalc on Understanding reference counting with Cocoa / Objective C mmalc 2008-11-19T09:35:59Z 2008-11-19T09:35:59Z This is just wrong. There is no need to send someObject release or autorlease in either of the examples shown. http://stackoverflow.com/questions/192721/why-shouldnt-i-use-obective-c-2-0-accessors-in-init-dealloc/227555#227555 Comment by mmalc on Why shouldn't I use Obective C 2.0 accessors in init/dealloc? mmalc 2008-11-19T09:25:13Z 2008-11-19T09:25:13Z Interesting point, but note that (unless you're assuming garbage collection?) the example you give leaves myMutableDict autoreleased... http://stackoverflow.com/questions/193288/what-is-the-cost-of-using-autorelease-in-cocoa/193812#193812 Comment by mmalc on What is the cost of using autorelease in Cocoa? mmalc 2008-10-22T18:12:01Z 2008-10-22T18:12:01Z You may choose not to follow best practice for memory management for other reasons, but that does not change what is considered best practice for memory management. http://stackoverflow.com/questions/193288/what-is-the-cost-of-using-autorelease-in-cocoa/193812#193812 Comment by mmalc on What is the cost of using autorelease in Cocoa? mmalc 2008-10-22T18:07:23Z 2008-10-22T18:07:23Z My assertion comes from discussion with iPhone engineers whilst writing (and setting policy for) iPhone sample code (and later for WWDC presentations) and subsequent discussion with AppKit engineers to ensure consistency of message. The consistent message was: avoiding autorelease is best practice. http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/8078#8078 Comment by mmalc on Understanding reference counting with Cocoa / Objective C mmalc 2008-10-20T16:03:11Z 2008-10-20T16:03:11Z The Core Foundation rules in particular are different from those of Cocoa; see <a href="http://developer.apple.com/documentation/CoreFoundation/Conceptual/CFMemoryMgmt/Concepts/Ownership.html" rel="nofollow">developer.apple.com/documentation/CoreFoundation/&hellip;</a>