User Adam Ernst - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:43:25Z http://stackoverflow.com/feeds/user/79 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1746005/importing-an-ssl-cert-under-the-iphone-sdk 2 Importing an SSL cert under the iPhone SDK Adam Ernst 2009-11-17T01:16:04Z 2009-11-18T23:25:56Z <p>My app connects to the <a href="https://ofx.schwab.com/cgi%5Fdev/ofx%5Fserver" rel="nofollow">Schwab OFX server</a> using <code>NSURLConnection </code>. Unfortunately the server uses a very recent intermediate certificate that is trusted on the Mac desktop but not yet the iPhone. (Try the URL—you'll get a cert error on iPhone.)</p> <p>There's no easy way to tell <code>NSURLConnection</code> to ignore an invalid cert that I know of. Thus I'm trying to import the cert into the Keychain manually and set its trust level but I've hit a block.</p> <p>I call <code>SecCertificateCreateWithData</code> successfully to import the certificate from a <code>.cer</code> file. On the desktop I would then call <code>SecTrustSettingsSetTrustSettings</code>, but it doesn't exist in the iPhone SDK.</p> <p>Any workaround?</p> http://stackoverflow.com/questions/1746005/importing-an-ssl-cert-under-the-iphone-sdk/1759856#1759856 2 Answer by Adam Ernst for Importing an SSL cert under the iPhone SDK Adam Ernst 2009-11-18T23:25:56Z 2009-11-18T23:25:56Z <p>Apple technical support responded to me promptly with a perfect answer.</p> <p>First, I am incorrect in saying that Schwab uses "a very recent intermediate certificate that is trusted on the Mac desktop but not yet the iPhone". Intermediate certificates are never in the built-in root certificate store. The issue is that most SSL servers <strong>bundle</strong> all intermediate certificates needed for verification, but Schwab uses an alternate SSL process that expects you to fetch the intermediate certificate from a URL. The Mac desktop supports intermediate-certificate fetching, but not the current iPhone OS.</p> <p>Here's the gist of the actual code:</p> <pre><code>OSStatus err; NSString * path; NSData * data; SecCertificateRef cert; path = [[NSBundle mainBundle] pathForResource:@"OFX-G3" ofType:@"cer"]; assert(path != nil); data = [NSData dataWithContentsOfFile:path]; assert(data != nil); cert = SecCertificateCreateWithData(NULL, (CFDataRef) data); assert(cert != NULL); err = SecItemAdd( (CFDictionaryRef) [NSDictionary dictionaryWithObjectsAndKeys: (id) kSecClassCertificate, kSecClass, cert, kSecValueRef, nil ], NULL ); assert(err == noErr); CFRelease(cert); </code></pre> <p>This assumes that OFX-G3.cer is the intermediate SSL certificate and is located in the Resources folder.</p> http://stackoverflow.com/questions/1098040/checking-if-an-associative-array-key-exists-in-javascript 1 Checking if an associative array key exists in Javascript Adam Ernst 2009-07-08T13:21:32Z 2009-11-02T01:46:07Z <p>How do I check if a particular key exists in a Javascript associative array?</p> <p>If a key doesn't exist and I try to access it, will it return false? Or throw an error?</p> http://stackoverflow.com/questions/1491345/change-textcolor-of-uinavigationbar-prompt/1505029#1505029 1 Answer by Adam Ernst for Change textColor of UINavigationBar "prompt"? Adam Ernst 2009-10-01T16:30:04Z 2009-10-01T16:30:04Z <p>I guess the only way to really do it is to use a custom <code>titleView</code> for each <code>UINavigationItem</code>. You can use a <code>UILabel</code> and try to match the built-in navigation title style as closely as you can, then assign your own text color.</p> http://stackoverflow.com/questions/1402148/imagewithcgimage-and-memory 1 imageWithCGImage and memory Adam Ernst 2009-09-09T21:16:15Z 2009-09-21T11:04:02Z <p>If I use <code>[UIImage imageWithCGImage:]</code>, passing in a <code>CGImageRef</code>, do I then release the <code>CGImageRef</code> or does UIImage take care of this itself when it is deallocated?</p> <p>The documentation isn't entirely clear. It says "This method does not cache the image object."</p> <p>Originally I called <code>CGImageRelease</code> on the CGImageRef after passing it to <code>imageWithCGImage:</code>, but that caused a <code>malloc_error_break</code> warning in the Simulator claiming a double-free was occurring.</p> http://stackoverflow.com/questions/1370074/being-informed-when-a-zoomtorect-animation-completes 0 Being informed when a zoomToRect: animation completes Adam Ernst 2009-09-02T20:57:44Z 2009-09-16T07:10:21Z <p>In the iPhone 3.0 SDK, how can I be informed when a <code>zoomToRect:animated:</code> animation completes?</p> <p>Sometimes the scrollview doesn't zoom at all (if it's already at the proper zoom level), and there doesn't seem to be a way to detect that.</p> http://stackoverflow.com/questions/769/solving-a-linear-equation 8 Solving a linear equation Adam Ernst 2008-08-03T18:14:24Z 2009-09-10T16:07:20Z <p>I need to programmatically solve a system of linear equations in C, Objective C, or (if needed) C++.</p> <p>Here's an example of the equations:</p> <pre><code>-44.3940 = a * 50.0 + b * 37.0 + tx<br>-45.3049 = a * 43.0 + b * 39.0 + tx<br>-44.9594 = a * 52.0 + b * 41.0 + tx<br></code></pre> <p>From this, I'd like to get the best approximation for a, b, and tx.</p> http://stackoverflow.com/questions/302365/observing-an-nsmutablearray-for-insertion-removal 5 Observing an NSMutableArray for insertion/removal Adam Ernst 2008-11-19T15:54:17Z 2009-09-08T15:30:16Z <p>A class has a property (and instance var) of type NSMutableArray with synthesized accessors (via <code>@property</code>). If you observe this array using:</p> <pre><code>[myObj addObserver:self forKeyPath:@"theArray" options:0 context:NULL]; </code></pre> <p>And then insert an object in the array like this:</p> <pre><code>[[myObj theArray] addObject:[NSString string]]; </code></pre> <p>An observeValueForKeyPath... notification is <strong>not</strong> sent. However, the following does send the proper notification:</p> <pre><code>[[myObj mutableArrayValueForKey:@"theArray"] addObject:[NSString string]]; </code></pre> <p>This is because <code>mutableArrayValueForKey</code> returns a proxy object that takes care of notifying observers.</p> <p>But shouldn't the synthesized accessors automatically return such a proxy object? What's the proper way to work around this--should I write a custom accessor that just invokes <code>[super mutableArrayValueForKey...]</code>?</p> http://stackoverflow.com/questions/1282709/cococa-iphone-question-kvo-rocks-now-how-do-i-use-it-asynchronously/1285767#1285767 1 Answer by Adam Ernst for Cococa iPhone Question. KVO rocks. Now how do I use it asynchronously? Adam Ernst 2009-08-17T00:54:58Z 2009-08-17T00:54:58Z <p>Check out NSNotification. It's not quite the same thing, but you can fire off notifications on background threads (with a little bit of research and work). You can maintain the nice decoupling and fire-and-forget behavior.</p> http://stackoverflow.com/questions/1252494/observing-self-in-cocoa 0 Observing self in Cocoa Adam Ernst 2009-08-09T22:33:02Z 2009-08-10T08:42:02Z <p>In Cocoa, <code>addObserver:forKeyPath:options:context:</code> retains "neither the receiver, nor anObserver". Therefore I assume observing self is allowed; that is, it's perfectly valid to do something like</p> <p><code>[self addObserver:self forKeyPath...]</code></p> <p>As long as you remember to unregister <code>self</code> as an observer as the first thing in dealloc.</p> <p>Is this assumption correct?</p> http://stackoverflow.com/questions/1083218/iphone-adding-the-view-of-mfmailcomposeviewcontroller-in-app-email/1083239#1083239 0 Answer by Adam Ernst for iphone - adding the view of MFMailComposeViewController (in-app email) Adam Ernst 2009-07-05T00:27:48Z 2009-07-05T00:27:48Z <p>You should instead try:</p> <p><code>[[self navigationController] presentModalViewController...];</code></p> <p>Since that's the proper way to present it. Trying to add its view manually is unfortunately utterly incorrect and will never work.</p> http://stackoverflow.com/questions/1064832/linq2sql-how-to-get-all-distinct-dates-without-time-part/1064860#1064860 0 Answer by Adam Ernst for Linq2Sql how to get all distinct dates without time part Adam Ernst 2009-06-30T17:09:53Z 2009-06-30T17:09:53Z <p>Try <a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a>, which lets you see the generated SQL. Play with different combinations.</p> http://stackoverflow.com/questions/1039279/not-tracking-c-designer-generated-code-refuses-to-generate-with-clean-checkout 1 Not tracking C# designer-generated code: refuses to generate with clean checkout Adam Ernst 2009-06-24T15:58:33Z 2009-06-26T15:38:01Z <p>In our ASP.NET MVC project we have a <code>Strings.resx</code> file and the accompanying autogenerated <code>Strings.Designer.cs</code> file.</p> <p>Tracking the <code>Strings.Designer.cs</code> file in source control creates a bunch of ugly merge conflicts and it's autogenerated anyway, so we decided to untrack it (remove it from source control and ignore the local copy of the file).</p> <p>This works well, except that on a fresh checkout of the source the Strings.Designer.cs file doesn't exist. The <code>PublicResXFileCodeGenerator</code> that generates the file from <code>Strings.resx</code> balks with a warning:</p> <blockquote> <p>"The custom tool 'PublicResXFileCodeGenerator' failed while processing the file 'Views\Setup\App_LocalResources\Strings.resx'."</p> </blockquote> <p>And as a result, all of the strings in that file generate compile errors. This means you must manually right-click on <em>each</em> <code>Strings.resx</code> file in the project and choose "Run Custom Tool".</p> <p>Is there any way to get the ResX code generator tool to run automatically even if Strings.Designer.cs doesn't yet exist?</p> <p>(We've experimented with ResGen but it is finicky--it refuses to generate Strings files with the proper filename and namespace.)</p> http://stackoverflow.com/questions/938763/yajl-on-the-iphone/941167#941167 1 Answer by Adam Ernst for YAJL on the iPhone Adam Ernst 2009-06-02T18:35:01Z 2009-06-02T18:35:01Z <p>I don't know if it works with MGTwitterEngine, but; try json-framework for iPhone, which I've used successfully:</p> <p><a href="http://code.google.com/p/json-framework/" rel="nofollow">http://code.google.com/p/json-framework/</a></p> http://stackoverflow.com/questions/930929/isequaltostring-cocoa-error/930958#930958 2 Answer by Adam Ernst for "isEqualToString" Cocoa error Adam Ernst 2009-05-31T00:41:19Z 2009-05-31T00:48:25Z <p>By "an array full of jokes", you apparently mean "an array full of classes of type Joke". You can't assign a Joke object to a UILabel's <code>text</code> property—it takes <code>NSString</code> only.</p> <p>(Cocoa isn't like Java or C++, where any object can be coerced to a string automatically through some <code>.toString()</code> method. Generally the framework asks for <code>NSString</code>s explicitly when it wants a string.)</p> <p>Here's what's happening: you're assigning a <code>Joke</code> object to the <code>text</code> property. Cocoa allows you to play fast and loose with types like this, without even a warning in this case since it's implicitly understood to be an NSString (the <code>id</code> type will silently become whatever type you're assigning it to). But when it tries to call <code>isEqualToString:</code> (an NSString method) on a Joke object, of course it fails.</p> <p>You need to assign the joke's text to the label instead.</p> <p>As for how to identify the object: you can issue the <code>po 0x52e2f0</code> command in the debugger, which usually works if memory isn't completely borked. It'll print an Objective-C representation of the object at that address.</p> http://stackoverflow.com/questions/919056/python-case-insensitive-replace 1 Python Case Insensitive Replace Adam Ernst 2009-05-28T03:35:24Z 2009-05-28T10:42:52Z <p>What's the easiest way to do a case-insensitive <code>str.replace</code> in Python?</p> http://stackoverflow.com/questions/907857/changing-the-delegate-of-a-tab-bar-exception/912219#912219 1 Answer by Adam Ernst for "Changing the delegate of a tab bar" exception Adam Ernst 2009-05-26T19:16:40Z 2009-05-26T19:16:40Z <p>Quite simply, you can't do that. Yanking the view out from under a UIViewController is a sure way to get a crash.</p> <p>Look at the tab bar tutorials Apple provides to see how it's done properly.</p> http://stackoverflow.com/questions/860761/changing-mercurial-default-parent-url 3 Changing Mercurial "Default" Parent URL Adam Ernst 2009-05-13T22:31:30Z 2009-05-26T09:14:39Z <p>Let's say I have a Mercurial repository and I'm pulling from a default parent URL (the source I cloned it from).</p> <p>Now I want to change the default parent URL (hostname change, or it was copied to another machine, etc.). Is there a way to do this, or do I have to re-clone from the new URL?</p> http://stackoverflow.com/questions/905291/iphone-need-to-get-a-cgcontextref-context-reference-for-a-sub-view/905305#905305 0 Answer by Adam Ernst for iPhone need to get a CGContextRef context reference for a sub view. Adam Ernst 2009-05-25T04:22:23Z 2009-05-25T04:22:23Z <p>You can't draw like that; you have to draw in response to a <code>drawRect</code> call, not at any time as some frameworks allow.</p> <p>The correct way to do it is: create a UIView subclass in Xcode. Switch to Interface Builder, select your subview, and change its "Class Identity" (under "Tools > Identity Inspector") to the name of your new subclass.</p> <p>Then in your subclass, you can implement <code>drawRect</code>.</p> http://stackoverflow.com/questions/900086/how-do-i-change-the-location-of-the-text-in-uitableview/900095#900095 0 Answer by Adam Ernst for How do i change the location of the text in UITableView? Adam Ernst 2009-05-22T21:35:49Z 2009-05-22T21:35:49Z <p>Subclass <code>UITableViewCell</code>, and in the subclass's <code>loadView</code> method, create a UILabel inside its <code>contentView</code>. Set this label to have the appropriate wrapping and location.</p> http://stackoverflow.com/questions/880833/whats-wrong-with-my-checkbox-drawing/880846#880846 2 Answer by Adam Ernst for What's wrong with my Checkbox drawing? Adam Ernst 2009-05-19T03:35:46Z 2009-05-19T03:35:46Z <p>Where are you setting backgroundImageForState? Are you sure it's the correct image? iPhone OS might be giving you a transparent (blank) image as a default.</p> <p>Second, I wouldn't use the passed-in "rect" param to draw the image. That's just telling you the area it wants you to redraw, not necessarily anything else. Instead use</p> <p><code>CGRectMake(0, 0, img.size.width, img.size.height)</code></p> <p>or something similar.</p> <p>Finally, why are you doing custom drawing? I've done something very similar, and you absolutely don't need to subclass and implement <code>drawRect</code>. UIButton has an extremely rich set of options built in for images, including "highlighted" and "selected" images that will draw automatically with user interaction. Let us know what you need to accomplish.</p> http://stackoverflow.com/questions/871318/what-kind-of-value-can-i-set-in-the-context-parameter-for-uiview-beginanimations/871556#871556 1 Answer by Adam Ernst for What kind of value can I set in the context parameter for UIView +beginAnimations:context:? Adam Ernst 2009-05-16T02:48:25Z 2009-05-16T02:48:25Z <p>Pass anything you want; <code>void *</code> means it's a buffer without a type, so the system ignores its contents.</p> <p>Next time a Google search for "void *" might help you figure out what it means—I'm assuming you just didn't understand why it was ignored by the system (it's just for your convenience).</p> http://stackoverflow.com/questions/871340/perfomselector-withobject-afterdelay-can-i-ask-for-a-low-priority/871553#871553 1 Answer by Adam Ernst for perfomSelector: withObject: afterDelay: can I ask for a low priority? Adam Ernst 2009-05-16T02:46:05Z 2009-05-16T02:46:05Z <p>Not directly. If you use <code>performSelector:withObject:afterDelay:</code> the selector is performed on the <strong>main thread</strong>, so by definition it will occur after all current "pending" UI events have been performed—but this might be in the middle of a scroll or animation, which you would probably consider to be one continuous event but is actually hundreds of separate ones.</p> <p>However, you can achieve something similar using <code>performSelectorInBackground:withObject:</code>, and then calling <code>[NSThread setThreadPriority:0.01]</code> in the method being called. Be careful—you're opening a background thread, so you can't do any UI calls. However, this will allow you to do the work on a background thread with lower priority than the main UI thread. (Remember to set up an autorelease pool since it's in its own thread!)</p> http://stackoverflow.com/questions/868648/how-can-i-make-a-set-of-constants-to-improve-the-usabilty-of-my-methods/868706#868706 6 Answer by Adam Ernst for How can I make a set of constants, to improve the usabilty of my methods? Adam Ernst 2009-05-15T13:34:23Z 2009-05-15T13:34:23Z <p>1) A semicolon always terminates an <code>enum</code> statement. In this case there are two separate statements: one defines a named enumeration, the next defines a new type.</p> <p>2) The enum statement creates a new type called "<code>enum CGImageAlphaInfo</code>". But typing this everywhere is cumbersome, so the typedef statement is used. The typedef statement works like this:</p> <p><code>typedef &lt;sometype&gt; &lt;newname&gt;;</code></p> <p>So <code>enum CGImageAlphaInfo</code> is the old type, and <code>CGImageAlphaInfo</code> is the new name. Apple uses the same name for both, which is a bit confusing but is really the best way to go about it.</p> <p>3) Right.</p> <p>4) You can do this, but then you have to manually assign the constant values; with enum values are assigned automatically. The main benefit, though, is that you get some type checking since you can use the <code>CGImageAlphaInfo</code> type instead of just a plain int which could be more easily assigned invalid values.</p> <p>5) I'm not sure what you mean by "stupid values". But yes, you should always check using the name in the way you describe, and never use some raw value like "300" or "1".</p> http://stackoverflow.com/questions/866200/disable-magnifying-glass-in-uitextfield/866305#866305 1 Answer by Adam Ernst for Disable Magnifying Glass in UITextField Adam Ernst 2009-05-14T23:00:33Z 2009-05-15T04:31:42Z <p>There's no way to prevent them from moving the cursor. You can, however, prevent them from editing the text except at the end by implementing the </p> <p><code>– textField:shouldChangeCharactersInRange:replacementString:</code></p> <p>method in your text field's delegate.</p> <p>Edit: you can also set <code>userInteractionEnabled</code> to <code>NO</code> so that the user can't tap the field. Call <code>becomeFirstResponder</code> manually so that the field gets focus since the user can't tap to focus.</p> http://stackoverflow.com/questions/866188/how-to-use-paragraph-text-in-uitableviewcell-in-cocoa-touch/866296#866296 0 Answer by Adam Ernst for how to use paragraph text in uitableviewcell in cocoa-touch Adam Ernst 2009-05-14T22:58:12Z 2009-05-14T22:58:12Z <p>The simplest approach is to use a UILabel, probably. The only alternative would be to make a custom UIView subclass that draws the text directly, but that will give you marginal benefit.</p> http://stackoverflow.com/questions/860761/changing-mercurial-default-parent-url/860765#860765 5 Answer by Adam Ernst for Changing Mercurial "Default" Parent URL Adam Ernst 2009-05-13T22:34:06Z 2009-05-13T22:34:06Z <p>I just found the answer to my own question. Edit the <code>.hg/hgrc</code> file in the repository, change the <code>default</code> setting under the <code>[paths]</code> section. Simple!</p> http://stackoverflow.com/questions/850711/do-cocoa-nssortdescriptors-belong-in-the-model-or-the-controller 0 Do Cocoa NSSortDescriptors belong in the model or the controller? Adam Ernst 2009-05-12T01:01:36Z 2009-05-12T02:39:15Z <p>Would <code>NSSortDescriptor</code> subclasses be placed in the Model or the Controller layer?</p> <p>Since they are primarily for display and business logic, it seems to make sense to put them in the Controller layer. But it also makes sense that models should know how to sort themselves.</p> http://stackoverflow.com/questions/844248/uiimageview-and-uiimage-how-can-i-tweak-the-most-performance-out-of-them/844320#844320 2 Answer by Adam Ernst for UIImageView and UIImage: How can I tweak the most performance out of them? Adam Ernst 2009-05-09T23:28:26Z 2009-05-09T23:28:26Z <p>Only a benchmark can tell you for sure. I'm inclined to think that <code>UIImage</code> image caching is probably <em>extremely</em> efficient, given that it's used virtually everywhere in the OS. That said with the number of images you're displaying, your approach might help.</p> http://stackoverflow.com/questions/719417/determine-if-nsnumber-is-nan 0 Determine if NSNumber is NaN Adam Ernst 2009-04-05T18:24:28Z 2009-04-06T22:15:20Z <p>How can I determine if a Cocoa NSNumber represents NaN (not a number)?</p> <p>This emerges, for example, when I parse a string that has an invalid (non-numeric) contents.</p> http://stackoverflow.com/questions/1746005/importing-an-ssl-cert-under-the-iphone-sdk/1746570#1746570 Comment by Adam Ernst on Importing an SSL cert under the iPhone SDK Adam Ernst 2009-11-18T23:16:20Z 2009-11-18T23:16:20Z Great answer. However Apple's technical support responded with a better answer--see my own response to this question. http://stackoverflow.com/questions/1370074/being-informed-when-a-zoomtorect-animation-completes Comment by Adam Ernst on Being informed when a zoomToRect: animation completes Adam Ernst 2009-10-13T04:32:37Z 2009-10-13T04:32:37Z Wil Shipley: different rect, same scale, and it doesn't scroll to it. You have to call both zoom and scroll, apparently. http://stackoverflow.com/questions/1370074/being-informed-when-a-zoomtorect-animation-completes/1431427#1431427 Comment by Adam Ernst on Being informed when a zoomToRect: animation completes Adam Ernst 2009-09-18T03:47:51Z 2009-09-18T03:47:51Z A fair workaround; essentially what I ended up doing. http://stackoverflow.com/questions/1370074/being-informed-when-a-zoomtorect-animation-completes/1422919#1422919 Comment by Adam Ernst on Being informed when a zoomToRect: animation completes Adam Ernst 2009-09-18T03:47:21Z 2009-09-18T03:47:21Z Doesn't work if it doesn't actually zoom. http://stackoverflow.com/questions/1402148/imagewithcgimage-and-memory/1402168#1402168 Comment by Adam Ernst on imageWithCGImage and memory Adam Ernst 2009-09-10T19:46:05Z 2009-09-10T19:46:05Z Not definitive, but I'll take it. http://stackoverflow.com/questions/1370074/being-informed-when-a-zoomtorect-animation-completes Comment by Adam Ernst on Being informed when a zoomToRect: animation completes Adam Ernst 2009-09-03T03:54:57Z 2009-09-03T03:54:57Z Yes, I need a way to figure out either case. http://stackoverflow.com/questions/1252494/observing-self-in-cocoa/1253756#1253756 Comment by Adam Ernst on Observing self in Cocoa Adam Ernst 2009-08-10T17:27:05Z 2009-08-10T17:27:05Z Good point; but, what do I use instead then? http://stackoverflow.com/questions/1150799/removing-the-bar-in-standard-uitableview-programmatically Comment by Adam Ernst on Removing the bar in standard UITableView programmatically Adam Ernst 2009-07-28T16:33:39Z 2009-07-28T16:33:39Z Strictly speaking that bar isn't on the UITableView; it's on the UINavigationController that manages the UIViewController that manages the table view. The answer below, if put in the UIViewController, works correctly. http://stackoverflow.com/questions/1105647/deactivate-uiscrollview-decelerating Comment by Adam Ernst on Deactivate UIScrollView decelerating Adam Ernst 2009-07-09T18:25:57Z 2009-07-09T18:25:57Z Why would you do that? http://stackoverflow.com/questions/1083218/iphone-adding-the-view-of-mfmailcomposeviewcontroller-in-app-email/1083239#1083239 Comment by Adam Ernst on iphone - adding the view of MFMailComposeViewController (in-app email) Adam Ernst 2009-07-07T02:30:56Z 2009-07-07T02:30:56Z You <i>must</i> use a navigation controller to use MFMailComposeViewController. The reason it does nothing is because if you're not using a navigation controller, [self navigationController] returns nil, and in Cocoa messages to nil are a no-op. http://stackoverflow.com/questions/930929/isequaltostring-cocoa-error/930958#930958 Comment by Adam Ernst on "isEqualToString" Cocoa error Adam Ernst 2009-05-31T17:28:45Z 2009-05-31T17:28:45Z Right. But unlike Java, there is no automatic coercion or automatic calling of description, except for NSLog. http://stackoverflow.com/questions/930929/isequaltostring-cocoa-error/930958#930958 Comment by Adam Ernst on "isEqualToString" Cocoa error Adam Ernst 2009-05-31T00:47:32Z 2009-05-31T00:47:32Z Indeed you're right. Corrected. http://stackoverflow.com/questions/927507/uitableviewcelleditingstyleinsert-or-uitableviewcelleditingstylenone Comment by Adam Ernst on UITableViewCellEditingStyleInsert or UITableViewCellEditingStyleNone ? Adam Ernst 2009-05-29T20:27:55Z 2009-05-29T20:27:55Z If you can't add new fields (with insert), what does &quot;deleting&quot; a field do? http://stackoverflow.com/questions/915416/is-there-an-way-to-make-an-invisible-uibutton-that-will-still-be-there-and-catc/916273#916273 Comment by Adam Ernst on Is there an way to make an invisible UIButton that will still "be there" and catch touch events for my UIImageView? Adam Ernst 2009-05-28T00:35:51Z 2009-05-28T00:35:51Z My bad; UIImageView is in fact not a UIControl so you can't do this. Use Bluephlame's suggestion. http://stackoverflow.com/questions/913627/uiviewcontroller-viewdidload-not-being-called/914137#914137 Comment by Adam Ernst on UIViewController -viewDidLoad not being called. Adam Ernst 2009-05-27T20:45:12Z 2009-05-27T20:45:12Z Don't badmouth silent-message-to-nil, you'll use it all the time when you get used to it :-) It can certainly be mysterious when you first start out. As for why navigationController is nil: is it being initialized as the root view controller of a UINavigationController? If not, you can't use pushViewController until you do that!