Search Results

0
votes

OS X file duplication converts text encoding by default

Are you using the Finder to copy your files, or some other tool (an IDE)? It's possible your original file has some extended Finder metadata in its Resource Fork that's being lost in the co …
4
votes

Best way to make NSRunLoop wait for a flag to be set?

In general, if you are processing events yourself in a loop, you're Doing It Wrong. It can cause a ton of messy problems, in my experience. If you want to run modally -- for example, showin …
2
votes

Can you detect a ctrl-click (context menu) request in the mouseDown event?

In general, -rightMouseDown: should get called automatically, but I've seen situations where it isn't -- these may be patched in Leopard. But right now, in -mouseDown: I check whether the c …
3
votes

Is it possible to design NSCell subclasses in Interface Builder?

As Ken says, NSCells and NSViews are different, and you can only lay out NSView hierarchies in NIB, not NSCells (which don't have any explicit hierarchy). On the other hand, there's nothing …
1
vote

How do I create a sparse file programmatically, in C, on Mac OS X?

I think it'd be helpful to know WHY you want sparse files. …
8
votes

Localizing a modern xib-based Mac application

I strongly strongly STRONGLY recommend against frame changes in localizations. I know this runs counter to Apple's advice, but there are SO MANY problems with allowing frame changes - you end up wi …
1
vote

Building OSX App Bundle

There's really nothing magic about the bundle - just read Apple's documentation on it, and mimic it. At the base, you need an Info.plist, the Contents/MacOS/binary, and an icon. …