Chris Hanson

9,228
Reputation
1566 views

Registered User

Name Chris Hanson
Member for 1 year
Seen 21 hours ago
Website
Location Cupertino, CA, USA
Age 33
I create tools for Mac OS X and iPhone developers. My opinions are mine, and aren't necessarily those of my employer. I only speak for myself, not them.
9h
awarded  objective-c
Nov
25
comment Pbl xcode C++ typedef struct toto toto
Stack Overflow is not a discussion forum; "bumping" your question like this is inappropriate.
Nov
24
comment target conditional library search paths xcode
A static library isn't compiled in, it's linked. Just being in the search paths isn't sufficient to cause it to be linked; it needs to be specified either in the Link Frameworks & Libraries build phase in your target, or in OTHER_LDFLAGS (as I show above, i.e. -lfoo). If it's not in either of those, it won't be linked.
Nov
24
answered How to write XCode plugins?
Nov
24
revised Why subclass NSObject?
fix title
Nov
24
answered target conditional library search paths xcode
Oct
25
awarded  Nice Answer
Oct
18
awarded  Nice Answer
Oct
6
awarded  Nice Answer
Sep
26
comment BDD in Objective-C
The person asking the question is talking about Objective-C and OCUnit, which expects test methods themselves to begin with "test" - that's how it knows what methods are test methods, since Objective-C doesn't have annotations like C# and Java do.
Sep
25
awarded  Nice Answer
Sep
25
accepted CGPathAddArc vs CGPathAddArcToPoint
Sep
17
awarded  Nice Answer
Sep
6
awarded  Nice Answer
Aug
31
revised Change templates in XCode
It's ~/Library/Application Support/Developer/
Aug
25
accepted How to organize unit testing of a library project in Xcode?
Aug
24
answered Are there any APIs added for Spotlight Search for iPhone 3.0?
Aug
24
comment How to organize unit testing of a library project in Xcode?
Thanks for pointing to the new article!
Aug
24
comment How to organize unit testing of a library project in Xcode?
Please don't point people to "Test Driving Your Code With OCUnit" - it's obsolete, and has been grossly out of date since a couple months after it was published. For one thing, it tells people to download OCUnit, but OCUnit has been included with Xcode since WWDC 2005 when Xcode 2.1 was released. Please point people to "Automated Unit Testing with Xcode 3 and Objective-C" developer.apple.com/mac/articles/… instead.
Aug
24
answered How to organize unit testing of a library project in Xcode?
Aug
23
revised Need help with Segmented Control
Xcode is the IDE, Cocoa Touch is the framework (since you mentioned iPhone in your previous tags)
Aug
23
revised Getting text to save on iPhone
clean up - Xcode is the IDE, Cocoa Touch is the framework
Aug
23
answered BDD in Objective-C
Aug
23
comment Change templates in XCode
If you don't have the paths above, you can create them. Don't change the templates in /Developer, because they won't necessarily survive uninstall and reinstall of the tools. Treat it like /System.
Aug
12
awarded  Nice Answer
Aug
9
awarded  Yearling
Aug
6
awarded  Nice Answer
Jul
30
comment Copying an NSArray with mutable copies of the original elements
Much better, thanks!
Jul
30
comment Copying an NSArray with mutable copies of the original elements
Ew ew ew, please don't even mention things like using -valueForKey: this way where newbies can see and be misled by it. (They will, you know: "On the Internet I read the way to do mutable copies was..." is how it will be remembered.)
Jul
24
awarded  Good Answer
Jul
19
comment “EXC_BAD_ACCESS” error when cell begins scrolling back in view?
You should really follow the canonical Objective-C coding style that you see in the iPhone and Mac OS X sample code; it will make your code easier for others to read and help you with.
Jul
18
accepted Update bound dictionary based on NSTextFieldCell’s edited value
Jul
13
answered When porting Java code to ObjC, how best to represent checked exceptions?
Jul
13
revised When porting Java code to ObjC, how best to represent checked exceptions?
slight clean-up
Jul
9
revised OCUnit test for protocols/callbacks/delegate in Objective-C
Removed octest tag, since there's OCUnit and the otest tool, but no octest
Jul
9
answered OCUnit test for protocols/callbacks/delegate in Objective-C
Jul
7
awarded  Nice Answer
Jul
7
comment How do I edit an interface builder object programmatically?
It's actually recommended that the IBOutlet macro be on the property, not the instance variable; this lets the instance variable have a different name and emphasizes the use of KVC to set the outlet.
Jul
7
comment How do I put the ‘M’ in MVC using Interface Builder
Serious developers definitely use IB. As answered, it's just an issue with the root view controller of the application, not with all view controllers. You can still lay out everything managed by each particular view controller in IB just fine.
Jul
6
awarded  Nice Answer
Jul
5
revised How to Save multiple values to CoreData
cleanup
Jul
1
revised Objective-C What are the things in parentheses?
change code example to be better, code formatting, language cleanup
Jul
1
revised Objective-C use of pointers
more descriptive title
Jun
29
comment Objective-C changes between OS 2.2.1 and OS 3??
As I've said, you can look at "The Objective-C 2.0 Programming Language" to see how the language is designed to behave. Apple's bug database is not public.
Jun
28
comment Objective-C changes between OS 2.2.1 and OS 3??
Ron, it's not a guess.
Jun
28
awarded  Nice Answer
Jun
28
comment Objective-C changes between OS 2.2.1 and OS 3??
@eJames: You're incorrect, it's perfectly valid to have a property of type (NSArray *) backed by an instance variable of type (NSMutableArray *). This is just a bug.
Jun
28
comment Objective-C changes between OS 2.2.1 and OS 3??
Ron, you just had a bare variable declaration, not an ivar declaration in an @interface. Furthermore, (readonly, copy) will work and is perfectly sensible: It says the property uses the "copy" style of memory management, and in this class is read-only. (A subclass could override that.) Finally, I restate that it worked prior to the iPhone OS 3.0 SDK and doesn't work in the iPhone OS 3.0 SDK specifically due to a compiler bug. You can read "The Objective-C 2.0 Programming Language" yourself to see what the behavior of the language should be.
Jun
26
awarded  Nice Answer
Jun
25
awarded  Nice Answer