User Marc Charbonneau - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T04:00:30Zhttp://stackoverflow.com/feeds/user/35136http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/322597/objective-c-class-vs-import/322626#3226267Answer by Marc Charbonneau for Objective-C @class vs. #importMarc Charbonneau2008-11-27T00:33:04Z2009-11-09T12:30:49Z<p>Use a forward declaration in the header file if needed, and <code>#import</code> the header files for any classes you're using in the implementation. In other words, you always <code>#import</code> the files you're using in your implementation, and if you need to reference a class in your header file use a forward declaration as well.</p>
<p>The <strong>exception</strong> to this is that you should <code>#import</code> a class or formal protocol you're inheriting from in your header file (in which case you wouldn't need to import it in the implementation).</p>
http://stackoverflow.com/questions/763956/git-commit-permissions-error-when-working-on-a-remote-host0Git commit permissions error when working on a remote hostMarc Charbonneau2009-04-18T18:59:58Z2009-10-16T20:25:23Z
<p>I'm trying to get my website under version control. I work directly on the server with ExpanDrive, which uses MacFUSE to mount the SFTP connection as a local volume which I can access with the terminal and other local applications.</p>
<p>Anyway, everything goes smoothly until I try to commit, when I receive this message:</p>
<pre><code>fatal: exec .git/hooks/pre-commit failed.
</code></pre>
<p>If I try to run the exec command manually, I see this:</p>
<pre><code>-bash: /Volumes/1&1 Internet/website/.git/hooks/pre-commit: Permission denied
-bash: exec: /Volumes/1&1 Internet/website/.git/hooks/pre-commit: cannot execute: Unknown error: 0
</code></pre>
<p>I've tried using my SFTP client to give everything under the .git directory full (777) permissions, and still no luck. Does anyone know of anything else I could try?</p>
http://stackoverflow.com/questions/1427364/how-to-convert-pdf-and-doc-files-to-html-using-cocoa/1428936#14289361Answer by Marc Charbonneau for How to convert pdf and doc files to html using CocoaMarc Charbonneau2009-09-15T18:35:10Z2009-09-15T18:35:10Z<p>Cocoa's PDFKit framework can convert a PDF file to text, through PDFDocument's <code>-string</code> method for example. Of course this won't copy images or formatting though, and it depends on PDFKit being able to recognize text in the file.</p>
http://stackoverflow.com/questions/1271618/how-to-store-linear-range-of-values-which-data-structure-to-choose/1271975#12719751Answer by Marc Charbonneau for How to store linear range of values? Which Data structure to choose?Marc Charbonneau2009-08-13T13:32:06Z2009-08-13T13:32:06Z<p>One other thing to keep in mind in these situations is that you can also store the key/value pairs in a plist in your application bundle, and load them when needed. This can make it easier to maintain a large number of items and localize the strings into different languages.</p>
http://stackoverflow.com/questions/1266721/returning-object-initialized-through-convenience-constructor/1266757#12667570Answer by Marc Charbonneau for Returning object initialized through "convenience constructor"Marc Charbonneau2009-08-12T14:59:47Z2009-08-12T14:59:47Z<p>No, you can simply return the autoreleased value. The reason for this is that autorelease isn't a function of the variable itself, it's a function of the autorelease pool, which (unless you create one yourself) is usually managed by the run loop.</p>
http://stackoverflow.com/questions/1264866/how-to-add-a-checkbox-in-a-alert-panel/1266535#12665352Answer by Marc Charbonneau for How to add a checkbox in a alert panel?Marc Charbonneau2009-08-12T14:29:39Z2009-08-12T14:29:39Z<p>You'll have to create your own NSPanel and show it modally instead of using NSAlert. NSAlert's accessory view and suppression button properties didn't exist prior to Leopard.</p>
http://stackoverflow.com/questions/1264561/can-an-object-be-a-delegate-for-multiple-delegators/1266270#12662702Answer by Marc Charbonneau for Can an object be a delegate for multiple delegators?Marc Charbonneau2009-08-12T13:49:23Z2009-08-12T13:49:23Z<p>In addition to what's been said about implementing multiple delegate protocols, Cocoa's delegation pattern makes it easy for an object to become a delegate for multiple objects of the same type. This is why most delegate methods include a pointer to the calling object as either a parameter, or the object of an NSNotification. You can use it to get more information about the object, or compare it to an instance variable in order to figure out what action to take.</p>
http://stackoverflow.com/questions/1266177/converting-json-dateticks-to-nsdate/1266235#12662350Answer by Marc Charbonneau for Converting JSON date(ticks) to NSDate Marc Charbonneau2009-08-12T13:40:29Z2009-08-12T13:40:29Z<p>I'm guessing here but your JSON value is the number of milliseconds since 1970, right? You can use NSDate's <code>dateWithTimeIntervalSince1970:</code> method to return an NSDate object with the correct time. Just make sure to convert the JSON milliseconds number to seconds before passing it to NSDate-- Cocoa uses NSTimeInterval in most places, which represents an interval in seconds.</p>
http://stackoverflow.com/questions/1170514/nsoutlineview-and-nstreecontroller-example/1171530#11715301Answer by Marc Charbonneau for NSOutlineView and NSTreeController exampleMarc Charbonneau2009-07-23T12:54:45Z2009-07-23T12:54:45Z<p>In addition to the documentation, <a href="http://developer.apple.com/samplecode/SourceView/index.html" rel="nofollow">this sample project</a> should help you better understand things. </p>
http://stackoverflow.com/questions/1116886/multiple-documents-in-a-single-window-in-cocoa/1119267#11192671Answer by Marc Charbonneau for Multiple Documents in a Single Window in CocoaMarc Charbonneau2009-07-13T12:53:59Z2009-07-13T12:53:59Z<p>I tried shoehorning an NSDocument app into a single window tabbed interface a few years ago, and ended up so frustrated after a few months I went back and refactored out the document architecture pieces. It's not impossible, but you end up working around so many problems that the final result barely resembles a proper NSDocument app. It's better to just rewrite the bits you do need, than end up with a lot of code just to subvert the Cocoa frameworks.</p>
http://stackoverflow.com/questions/1104416/how-to-add-in-the-nsstring-in-iphone/1104433#11044330Answer by Marc Charbonneau for how to add ' in the nsstring in iphone?Marc Charbonneau2009-07-09T14:59:08Z2009-07-09T14:59:08Z<p>You just want to surround the string with single quotes, right? You can just use stringWithFormat:</p>
<pre><code>mystring = [NSString stringWithFormat:@"'%@'", mystring];
</code></pre>
http://stackoverflow.com/questions/1103317/how-can-one-sort-an-nsmutablearray-of-nsmutablearrays-containing-nsstrings/1103380#11033801Answer by Marc Charbonneau for How can one sort an NSMutableArray of NSMutableArrays containing NSStrings?Marc Charbonneau2009-07-09T11:55:53Z2009-07-09T11:55:53Z<p>As others have mentioned, NSArray doesn't have a <code>compare:</code> selector that allows it to sort itself, so you'll have to define it yourself. I would create a category on NSArray with a method called <code>compare:(NSArray *)otherArray</code> (or something that better describes what it does) and use that with <code>sortUsingSelector:</code>.</p>
<p>Depending on your needs you could possibly stuff all your strings into a big array when you need to sort them, and use that instead. It could be a little less code to write.</p>
http://stackoverflow.com/questions/1098957/objective-c-extract-filename-from-path-string/1099322#10993226Answer by Marc Charbonneau for Objective-C: Extract filename from path stringMarc Charbonneau2009-07-08T16:59:02Z2009-07-08T16:59:02Z<p>If you're displaying a user-readable file name, you do <strong>not</strong> want to use <code>lastPathComponent</code>. Instead, pass the full path to NSFileManager's <code>displayNameAtPath:</code> method. This basically does does the same thing, only it correctly localizes the file name and removes the extension based on the user's preferences.</p>
http://stackoverflow.com/questions/1099192/objective-c-memory-management-caching-view-elements/1099218#10992183Answer by Marc Charbonneau for objective-c memory management: caching view elementsMarc Charbonneau2009-07-08T16:38:45Z2009-07-08T16:38:45Z<p>_logoView isn't set to nil automatically just by releasing it, so any future methods you try to call using that pointer will go to a memory location that used to contain a valid object, but now contains junk. You can fix this by setting <code>_logoView = nil;</code> after releasing it.</p>
http://stackoverflow.com/questions/1098005/is-it-necessary-to-release-a-nsinteger-in-iphone/1098059#10980592Answer by Marc Charbonneau for is it necessary to release a NSInteger in iphone?Marc Charbonneau2009-07-08T13:23:49Z2009-07-08T13:23:49Z<p>NSInteger is a typedef for a primitive type, it's not an object that can respond to methods like retain or release. Even though it's named similarly to Cocoa classes like NSNumber or NSValue it's actually treated the same as int, float, etc.</p>
http://stackoverflow.com/questions/1097115/bottom-bar-in-nswindow/1098012#10980122Answer by Marc Charbonneau for Bottom bar in NSWindowMarc Charbonneau2009-07-08T13:17:02Z2009-07-08T13:17:02Z<p>Tom's answer is correct, but also take a look at <a href="http://brandonwalkin.com/bwtoolkit/" rel="nofollow">BWToolKit</a>. It includes a few nice controls for working with bottom bars.</p>
http://stackoverflow.com/questions/1082178/objective-c-remove-last-character-from-string/1082206#10822066Answer by Marc Charbonneau for Objective C - Remove last character from stringMarc Charbonneau2009-07-04T13:26:19Z2009-07-06T12:35:38Z<p>In your controller class, create an action method you will hook the button up to in Interface Builder. Inside that method you can trim your string like this:</p>
<pre><code>if ( [string length] > 0 )
string = [string substringToIndex:[string length] - 1];
</code></pre>
http://stackoverflow.com/questions/1082137/indexed-relationships-in-core-data/1082231#10822310Answer by Marc Charbonneau for Indexed Relationships in Core DataMarc Charbonneau2009-07-04T13:40:24Z2009-07-04T13:40:24Z<p>A good solution is to keep a separate data structure in Document to map DataItems to a position in the table view. Besides allowing the same DataItem to exist in multiple positions, if you need to add a DataItem to multiple Documents this solution will also work.</p>
<p>Back when I was looking at different strategies of keeping Core Data objects ordered I found a <a href="http://www.fatcatsoftware.com/blog/2008/per-object-ordered-relationships-using-core-data" rel="nofollow">blog post</a> that explains how to do this in great detail, including sample code too.</p>
http://stackoverflow.com/questions/1072848/how-to-check-if-an-nsdate-occurs-between-two-other-nsdates/1074983#10749831Answer by Marc Charbonneau for How to Check if an NSDate occurs between two other NSDatesMarc Charbonneau2009-07-02T15:14:20Z2009-07-02T15:14:20Z<p>You can take a look at the answers to <a href="http://stackoverflow.com/questions/947947/how-to-determine-if-an-nstimeinterval-occurred-during-an-arbitrary-nsdate">this question</a> for more information on how create NSDate objects for a specific time period, such as 5pm-9pm.</p>
http://stackoverflow.com/questions/1074321/what-does-sending-a-message-to-nil-mean-and-why-is-it-a-special-case/1074897#10748971Answer by Marc Charbonneau for what does sending a message to nil mean, and why is it a special case?Marc Charbonneau2009-07-02T14:58:50Z2009-07-02T14:58:50Z<p>The great thing about nil messaging compared to other languages like C# is that you can write code that performs multiple method calls without having to test for nil at each step.</p>
<pre><code>id obj1 = [SomeClass object];
id obj2 = [obj1 doSomething];
id obj3 = [obj2 anotherMethod];
id thingICareAbout = [obj3 doSomethingElse];
</code></pre>
<p>If you go through several steps to get to <code>thingICareAbout</code>, it saves a lot of unnecessary lines of code to not have to test if obj1, obj2 and so on are nil before using them. You can just check if <code>thingICareAbout</code> is nil once at the end if you need to. Sometimes you don't even have to do that, if your code still works when it's nil (or 0 for primitive values).</p>
<p>In C# you would have had to explicitly check if each object is nil, set up exception handling around that block of code, or just hope none of the intermediate objects are ever nil.</p>
<p>One other thing to keep in mind (that I just learned myself!) is that 10.5 changed this behavior-- it used to be that it was only safe for integers and pointers to objects, not structs or floating point values. You might see some additional error checking when you're looking at other code because of this.</p>
http://stackoverflow.com/questions/902194/how-do-i-override-nserror-presentation-when-bindings-is-involved4How do I override NSError presentation when bindings is involved?Marc Charbonneau2009-05-23T18:51:40Z2009-06-30T19:52:38Z
<p>One thing I've always had trouble with in Cocoa Bindings has been error presentation, for example when the user types the wrong value into a text field with a formatter attached. Normally I would override <code>willPresentError:</code> somewhere in the responder chain, but my problem is the NSError objects created by the Bindings system doesn't contain enough information for me to tell what failed, or if it's even an error I'm interested in customizing. I could completely remove bindings from the equation and create my own errors when validation problems occur, but I feel like I would be throwing out some useful stuff that way.</p>
<p>I've been able to get around this by implementing the NSControl delegate methods and storing the control that failed in an instance variable in my view controller. If it's non-nil by the time <code>willPresentError:</code> rolls around, I know what failed to validate.</p>
<pre><code>- (BOOL)control:(NSControl *)control didFailToFormatString:(NSString *)string errorDescription:(NSString *)error;
{
_errorSender = [control retain];
return NO;
}
- (NSError *)willPresentError:(NSError *)error;
{
if ( _errorSender != nil )
{
NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithDictionary:[error userInfo]];
NSString *help = NSLocalizedString( @"Why are you always messing up? You are a terrible person.", @"" );
[_errorSender release];
_errorSender = nil;
[userInfo setObject:help forKey:NSLocalizedRecoverySuggestionErrorKey];
return [NSError errorWithDomain:[error domain] code:[error code] userInfo:userInfo];
}
return [super willPresentError:error];
}
</code></pre>
<p>This works when the first responder changes, but not when I call <code>commitEditing</code> on the view controller, so it's only partially useful to me. </p>
<p>The only other option I can see is taking NSFormatter out of the equation, and using <code>validateValue:forKey:error:</code> in my Core Data managed objects to handle validation. This doesn't make as much sense to me as using a formatter, but at least I'd have full control over the NSError object.</p>
<p>I feel like I must be missing something for there to be this kind of disconnect with error handling. Any suggestions?</p>
http://stackoverflow.com/questions/772538/kvo-and-bindings-problems-using-my-own-not-the-shared-nsuserdefaults-object3KVO and Bindings problems using my own (not the shared) NSUserDefaults objectMarc Charbonneau2009-04-21T13:17:03Z2009-06-30T19:21:39Z
<p>I'm subclassing NSUserDefaults in my application. A side effect of this is I can't use <code>[NSUserDefaults sharedUserDefaults]</code>, I have to have a class method to provide my own static defaults object. This isn't been a problem in code, but it's proving tricky now that I'm hooking up the preferences UI with bindings.</p>
<p>The shared NSUserDefaultsController uses the shared defaults, so that's out. Instead I can create my own defaults controller in my window controller, provide it with my static defaults object, and hook up my bindings to that. This doesn't fully work though. When I tried using KVO on my defaults object I didn't receive any change notifications. I tried this again with a regular NSUserDefaults object (not a subclass) and again, no KVO notifications. Substituting in the shared defaults object, KVO works exactly how I'd expect.</p>
<p>Does anyone have any ideas on how I can get bindings and KVO to work when I'm not using the shared defaults?</p>
http://stackoverflow.com/questions/1061230/objective-c-question-regarding-nsstring-nsinteger-and-method-calls/1061285#10612850Answer by Marc Charbonneau for objective-c question regarding NSString NSInteger and method callsMarc Charbonneau2009-06-30T00:56:04Z2009-06-30T00:56:04Z<p>One other thing to keep in mind though is that when you're dealing with paths NSString gives you <code>stringByAppendingPathExtension:</code> and <code>stringByAppendingPathComponent:</code>, both of which handle things like trailing slashes better than if you just use <code>stringByAppendingString:</code>.</p>
<p>If you describe a little more about what this object does and what kind of images it's loading I might be able to offer some advice if I can think of a better way of creating the filenames, instead of just passing a number around.</p>
http://stackoverflow.com/questions/1027658/access-nsarray-from-a-nstimer-interval-excbadaccess/1027779#10277797Answer by Marc Charbonneau for Access NSArray from a NSTimer Interval = EXC_BAD_ACCESSMarc Charbonneau2009-06-22T15:16:41Z2009-06-22T15:16:41Z<p><code>arrayWithObjects:</code> returns an autoreleased object, and since you're not retaining it it's being deallocated at the end of the run loop, before your timer fires. You want to either retain it or use the equivalent alloc/init method, and release it when you're done with it. Be sure to read about memory management first though, you're going to run into all kinds of problems like this until you have a good understanding of it.</p>
http://stackoverflow.com/questions/994033/mac-os-x-quickest-way-to-kill-quit-an-entire-process-tree-from-within-a-cocoa-ap/994142#9941420Answer by Marc Charbonneau for Mac OS X: Quickest way to kill/quit an entire process tree from within a Cocoa application.Marc Charbonneau2009-06-15T00:45:01Z2009-06-15T00:45:01Z<p>The last time I looked into this (which was a few years ago, but I don't think much has changed) the best solution I found was just to call the system kill command.</p>
<pre><code>system( "ps axwww | grep -i CoreServices/Dock.app/Contents/MacOS/Dock | grep -v grep | awk '{print $1}' | xargs kill -3" );
</code></pre>
http://stackoverflow.com/questions/978759/what-is-lazy-initialization-c-net/978805#9788050Answer by Marc Charbonneau for What is lazy initialization? (c# .net)Marc Charbonneau2009-06-11T00:44:43Z2009-06-11T00:44:43Z<p>The database examples that have been mentioned so far are good, but it's not restricted to just the data access layer. You could apply the same principles to any situation where performance or memory can be a concern. A good example (although not .NET) is in Cocoa, where you can wait until the user requests a window to actually load it (and its associated objects) from the nib. This can help keep memory usage down and speed up the initial application load, especially when you're talking about things like Preferences windows that won't be needed until some later time, if ever.</p>
http://stackoverflow.com/questions/978175/how-far-can-you-go-using-subclassing-in-objective-c/978389#9783892Answer by Marc Charbonneau for How far can you go using subclassing in objective-c?Marc Charbonneau2009-06-10T22:03:01Z2009-06-10T22:03:01Z<p>No, feel free to go nuts. Many Cocoa classes are not as subclassing-friendly as others (especially those that are meant to rely more on delegate control) and may not expose the functionality you need, but you can feel free to subclass any method that's not private (begins with a _ prefix). You could even subclass those if you really wanted to, although on the iPhone chances are Apple would reject your app.</p>
http://stackoverflow.com/questions/972605/how-do-i-store-a-string-as-an-array-in-a-cocoa-property-list/972976#9729762Answer by Marc Charbonneau for How do I store a string as an array in a Cocoa property list?Marc Charbonneau2009-06-09T23:15:33Z2009-06-09T23:15:33Z<p>You can't cast or otherwise convert a string into an array; they're separate, distinct objects. It's the same as if in real life you try to turn your dog into a station wagon, it isn't happening.</p>
<p>Instead, put your dog inside the station wagon (or put your string(s) inside an array). You can create the array with <code>[NSArray arrayWithObjects:@"string1", @"string2", nil];</code>. Stick that inside your dictionary for a given key, along with your final string for another key, save it, and you'll have a plist with an array of one or more strings.</p>
<p>Also, in your code example your dictionary is leaking memory. Read up on memory management in Objective-C, you're going to run into lots of crashes and performance issues until you understand it well.</p>
http://stackoverflow.com/questions/970786/where-to-place-common-utility-methods-on-iphone/971017#9710171Answer by Marc Charbonneau for Where to place common utility methods on iPhoneMarc Charbonneau2009-06-09T16:03:47Z2009-06-09T16:03:47Z<p>You're talking about common code you want to share between projects, right?</p>
<p>There are a few ways to handle this. Building your own Framework is one possibility, you can see this in action in <a href="http://www.omnigroup.com/developer/" rel="nofollow">OmniGroup's open source framework</a>. In my opinion though, building a framework can be pretty cumbersome. I prefer to simply keep a directory of source files that I can reference (not copy) from each project I'm using them in. I don't even do that much anymore in my Cocoa projects though, it seems like most of the truly portable code that I have a use for in multiple projects has been included in successive releases of Cocoa.</p>
http://stackoverflow.com/questions/969130/nslog-tips-and-tricks/969787#9697873Answer by Marc Charbonneau for NSLog tips and tricksMarc Charbonneau2009-06-09T12:28:55Z2009-06-09T12:28:55Z<p>My answer to <a href="http://stackoverflow.com/questions/300673/is-it-true-that-one-should-not-use-nslog-on-production-code/302246#302246">this question</a> might help, looks like it's similar to the one Diederik cooked up. You may also want to replace the call to NSLog() with a static instance of your own custom logging class, that way you can add a priority flag for debug/warning/error messages, send messages to a file or database as well as the console, or pretty much whatever else you can think of.</p>
<pre><code>#define DEBUG_MODE
#ifdef DEBUG_MODE
#define DebugLog( s, ... ) NSLog( @"<%p %@:(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )
#else
#define DebugLog( s, ... )
#endif
</code></pre>
http://stackoverflow.com/questions/1142581/nsstring-released-problemComment by Marc Charbonneau on nsstring released problemMarc Charbonneau2009-07-17T12:23:25Z2009-07-17T12:23:25ZPlease post the code.http://stackoverflow.com/questions/1096611/objective-c-properties-in-iphone-development/1097511#1097511Comment by Marc Charbonneau on Objective-C Properties in iPhone DevelopmentMarc Charbonneau2009-07-08T16:53:36Z2009-07-08T16:53:36ZA property is an interface for external objects to get and set data. An instance variable is internal to that object, although it can be exposed to outside objects using properties, its own getter/setter methods, or indirectly through other public methods you create.http://stackoverflow.com/questions/1092138/objective-c-what-is-the-value-of-a-uitextfield-with-nothing-in-it/1092281#1092281Comment by Marc Charbonneau on Objective C - What is the value of a UITextField with nothing in itMarc Charbonneau2009-07-07T15:48:05Z2009-07-07T15:48:05ZThe placeholder string property is definitely the way to go, unless you want to have the string "nothing" saved in your data model (usually it's preferable to just set it to nil though).http://stackoverflow.com/questions/1092138/objective-c-what-is-the-value-of-a-uitextfield-with-nothing-in-it/1092203#1092203Comment by Marc Charbonneau on Objective C - What is the value of a UITextField with nothing in itMarc Charbonneau2009-07-07T15:45:30Z2009-07-07T15:45:30Z[textField.text length] will return 0 if the text property is nil, so you can actually get away with taking out the nil check.http://stackoverflow.com/questions/1082178/objective-c-remove-last-character-from-string/1082206#1082206Comment by Marc Charbonneau on Objective C - Remove last character from stringMarc Charbonneau2009-07-06T12:39:24Z2009-07-06T12:39:24ZThanks Jim, it was too early in the morning for arithmetic I guess. :) Omar, string refers to a variable called string that holds the text you want to modify. You can take a look at the documentation for the different ways you can create an NSString object, either from a file on disk or from data in your application.http://stackoverflow.com/questions/1074321/what-does-sending-a-message-to-nil-mean-and-why-is-it-a-special-case/1074332#1074332Comment by Marc Charbonneau on what does sending a message to nil mean, and why is it a special case?Marc Charbonneau2009-07-02T15:04:31Z2009-07-02T15:04:31ZNot exactly. Nil is equal to 0, it's not an object. This is why you can do the same thing with methods that return an integer value. There is a special NSNull object that you can use in collections classes, but it is not equal to nil.http://stackoverflow.com/questions/1071685/changing-value-of-a-nsnumber/1071711#1071711Comment by Marc Charbonneau on Changing value of a NSNumberMarc Charbonneau2009-07-02T03:05:45Z2009-07-02T03:05:45ZNot really, typically when you'd want a "mutable" number you end up using a primitive. NSNumber is more useful for serialization, being a dictionary key, and things along those lines.http://stackoverflow.com/questions/1067658/alert-the-user-when-exceeding-25-characters-in-a-text-viewComment by Marc Charbonneau on Alert the user when exceeding 25 characters in a text viewMarc Charbonneau2009-07-01T16:36:47Z2009-07-01T16:36:47ZI kind of like the strategy most Twitter clients use, to allow the user to enter more than n characters, but not 'submit' the data if it's over the limit. A counter somewhere tells you how many characters you've typed, and if you're over the limit. This way you can get your thoughts out of your head and into the text field, and revise it until you have a valid entry.http://stackoverflow.com/questions/1067480/how-to-draw-a-default-image-in-imageview-in-the-center-of-imageview/1067702#1067702Comment by Marc Charbonneau on How to draw a default image in imageview in the center of imageView?Marc Charbonneau2009-07-01T12:37:46Z2009-07-01T12:37:46ZNot a great solution if you want to have an image view display a "drop image here" graphic, for example. I'm sure you could do it by monitoring the image view's image and swapping in the custom graphic when the initial value is nil or the user deletes the current image, but it seems like less work just to add it in drawRect.http://stackoverflow.com/questions/1067529/open-source-objective-c-projects-with-high-quality-code/1067801#1067801Comment by Marc Charbonneau on Open source Objective-C projects with high quality code?Marc Charbonneau2009-07-01T12:27:44Z2009-07-01T12:27:44ZThe sample apps included with the Developer Tools are a good place to start learning too.http://stackoverflow.com/questions/1061230/objective-c-question-regarding-nsstring-nsinteger-and-method-calls/1061261#1061261Comment by Marc Charbonneau on objective-c question regarding NSString NSInteger and method callsMarc Charbonneau2009-06-30T00:58:55Z2009-06-30T00:58:55ZThere's actually a numberWithInteger: method since NSInteger appeared with 10.5, you'll see similar methods in places like NSUserDefaults too.http://stackoverflow.com/questions/1041985/is-there-a-better-way-to-put-a-bunch-of-stuff-in-nsuserdefaults/1042021#1042021Comment by Marc Charbonneau on Is there a better way to put a bunch of stuff in NSUserDefaults?Marc Charbonneau2009-06-25T03:52:24Z2009-06-25T03:52:24ZYes, typically you'd use NSUserDefaults for preferences (like choosing imperial vs metric units), and store your app's data in a separate file using serialized property lists, sqlite, Core Data, etc.http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/297307#297307Comment by Marc Charbonneau on What are best practices that you use when writing Objective-C and Cocoa?Marc Charbonneau2009-06-22T15:21:07Z2009-06-22T15:21:07ZUnless there's a special syntax I'm missing, // Mark: does not add a label in Xcode's functions drop down menu, which is really half the reason of using it.http://stackoverflow.com/questions/535120/is-if-variable-the-same-as-if-variable-nil-in-objective-c/535134#535134Comment by Marc Charbonneau on Is if (variable) the same as if (variable != nil) in Objective-CMarc Charbonneau2009-06-09T12:35:07Z2009-06-09T12:35:07Z@rustyshelf that's one of the great things about Objective-C compared to C# or other languages. When you only care about the final return value, but it takes four or five method calls to get it, not having to check for nil at every step along the way removes a lot of "ugly" lines of code. Remember that this is only true for integers and pointers though, calling methods that return doubles or floats on nil will return garbage.http://stackoverflow.com/questions/957917/how-can-i-get-started-in-javaComment by Marc Charbonneau on How can I get started in Java?Marc Charbonneau2009-06-05T20:18:21Z2009-06-05T20:18:21ZOh great, now I'm hungry for soft-serve icecream.