3
votes
CPAN/gem-like repository for Objective-C and Cocoa?
Daniel mentioned http://cocoadev.com.
More specifically, check out …
0
votes
How to tell if the user’s using 24 hour time using Cocoa
NSShortTimeDateFormatString is deprecated, and I believe it also effectively doesn't work in 10.5 and later. See the 10.4 and 10.5 Foundation release notes. Dumping all defaults is a good way to …
5
votes
Is it possible to design NSCell subclasses in Interface Builder?
The question was about a subclass of NSCell; the other answers seem to be doing something else, likely taking advantage of UITableViewCell being a view.
NSCell is not a view. While laying …
3
votes
Is there a way to suppress warnings in Xcode?
Suppressing that particular warning is not safe. The compiler needs to know the types of the arguments and returns to a method to generate correct code.
For example, if you're calling a …
2
votes
How do I profile how long a piece of code takes to execute in Objective-C/Cocoa for optimization purposes
Woo shark, yay. See also Shark …
3
votes
When to call self.myObject vs just calling myObject in Objective-C
Hrm, I cannot say that I agree with Mark or Cinder6.
Well, I agree in the first part. :-) self.foo is invoking the -foo method. Plain foo is accessi …
1
vote
Facebook connectivity.
Take a look at http://wiki.developers.facebook.com/index.php/Facebook_Connect_for_iPhone and a …
1
vote
Why are there more files/hardlinks with the same iNode than the reference count shows?
Are you looking at Time Machine backups? Are there directory hardlinks involved?
If directory A contains directories B1 and B2 which are hardlinked, a file with the same inode would be ins …
3
votes
NSpoint from NSTextView insertion point
Sure: [textView firstRectForCharacterRange:[textView selectedRange]];
…
1
vote
0
votes
Converting enum into a class hierarchy
Please see http://stackoverflow.com/questions/1242914/converting-between-c-enum-and-xml. It's the same an …
0
votes
How to avoid a NSCachedImageRep
Try it on 10.6. The problem has probably evaporated.
Please see the AppKit release notes …
0
votes
Current Text Direction (BiDi support) in Cocoa?
Okay, I was waiting until today to answer this. :-)
In 10.6, see -[NSApplication userInterfaceLayoutDirection]. For earlier releases, no explicit support, so yeah, you could j …
0
votes
How can I force invalidation of a running Cocoa program without additional custom code?
Minimize the window and unminimize it. That happens to force a redraw.
…
4
votes
Is there ever a need for a class to override +alloc in Objective-C?
It's quite rare.
NSString is an example of a class that overrides +alloc as an implementation detail. If you were to check, you'd find +[NSString alloc] returns something of class NSPlac …
