Search Results

3
votes

CPAN/gem-like repository for Objective-C and Cocoa?

Daniel mentioned http://cocoadev.com. More specifically, check out …
0
votes

Sample code for using mac camera in a program?

Quartz Composer is also a pleasant way to capture and work with video, when it's applicable. There's a video input patch. Quartz Composer is a visual programming environment that integrate …
2
votes

Height of NSTextView with one line?

It would be more normal to be using an NSTextField than an NSTextView for a single line of text. With NSTextField, just do the following: [textField setFont:myFont]; [textFi …
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 …
2
votes

How do you start debugging a Cocoa app with a URL?

You can do gdb --wait myAppName and then click on the link to launch your app. This will cause your app to break into the debugger very, very early, before main …
2
votes

What’s a good way to bind from a shared utility window and the frontmost document window?

Leopard's TextEdit does this for its inspector. Check it out in file:///Developer/Examples/AppKit/TextEdit. …
9
votes

How would one implement a sidebar similar to Mail/iTunes/Finder/etc in Cocoa/IB?

Direct support for this sort of thing was added in Leopard. It's called a 'source list'. Please see the 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]]; …
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

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. …

1 2 next
15 30 50 per page