Marc Charbonneau

9,924
Reputation
634 views

Registered User

Name Marc Charbonneau
Member for 1 year
Seen 1 hour ago
Website
Location Rochester, NY
Age 27
I'm a software developer living in Rochester, NY. I work for a non-profit during the day, and in my free time I do freelancing and write shareware applications for Mac OS X and the iPhone.

Have a look at some of the software I've written at Downtown Software House, or click here to learn more about me and how to get in touch.
Nov
7
awarded  Yearling
Oct
28
awarded  objective-c
Oct
23
accepted How to add a checkbox in a alert panel?
Oct
7
awarded  Nice Answer
Sep
21
awarded  Nice Answer
Sep
15
answered How to convert pdf and doc files to html using Cocoa
Sep
3
awarded  Good Answer
Aug
31
awarded  Enlightened
Aug
31
awarded  Nice Answer
Aug
27
accepted Where can I get better Apple documentation?
Aug
23
accepted How would you put an Image next to a text cell for only parent rows in an outline view?
Aug
23
accepted How do you change the look of a check box?
Aug
13
answered How to store linear range of values? Which Data structure to choose?
Aug
12
accepted Converting JSON date(ticks) to NSDate
Aug
12
answered Returning object initialized through “convenience constructor”
Aug
12
revised How to add a checkbox in a alert panel?
edited tags
Aug
12
answered How to add a checkbox in a alert panel?
Aug
12
answered Can an object be a delegate for multiple delegators?
Aug
12
answered Converting JSON date(ticks) to NSDate
Aug
8
accepted Indexed Relationships in Core Data
Aug
6
awarded  Enlightened
Aug
6
awarded  Nice Answer
Jul
23
answered NSOutlineView and NSTreeController example
Jul
17
revised How can I animate the movement of a view or image along a curved path?
added 29 characters in body
Jul
17
comment nsstring released problem
Please post the code.
Jul
15
awarded  Nice Answer
Jul
15
awarded  Nice Question
Jul
13
accepted Multiple Documents in a Single Window in Cocoa
Jul
13
answered Multiple Documents in a Single Window in Cocoa
Jul
9
revised Find Installed applications in cocoa
edited tags
Jul
9
answered how to add ‘ in the nsstring in iphone?
Jul
9
answered How can one sort an NSMutableArray of NSMutableArrays containing NSStrings?
Jul
9
accepted Bottom bar in NSWindow
Jul
8
answered Objective-C: Extract filename from path string
Jul
8
comment Objective-C Properties in iPhone Development
A 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.
Jul
8
accepted objective-c memory management: caching view elements
Jul
8
answered objective-c memory management: caching view elements
Jul
8
answered is it necessary to release a NSInteger in iphone?
Jul
8
answered Bottom bar in NSWindow
Jul
7
comment Objective C - What is the value of a UITextField with nothing in it
The 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).
Jul
7
comment Objective C - What is the value of a UITextField with nothing in it
[textField.text length] will return 0 if the text property is nil, so you can actually get away with taking out the nil check.
Jul
7
accepted Objective C - Remove last character from string
Jul
6
comment Objective C - Remove last character from string
Thanks 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.
Jul
6
revised Objective C - Remove last character from string
added 4 characters in body; added 1 characters in body
Jul
6
awarded  Nice Answer
Jul
4
answered Indexed Relationships in Core Data
Jul
4
answered Objective C - Remove last character from string
Jul
2
answered How to Check if an NSDate occurs between two other NSDates
Jul
2
comment what does sending a message to nil mean, and why is it a special case?
Not 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.
Jul
2
answered what does sending a message to nil mean, and why is it a special case?