Search Results

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

How to see what label color is on a file/folder from within Termnal (Mac OS X)

Using xattr... for instance, I have a directory named "Foo", and I made its label red in the Finder. Then I did: wilPureSex% xattr -p com.apple.FinderInfo Foo 00 00 00 00 00 00 00 0 …
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. …
1
vote

How Should an OS X Drawing Programs Store Custom Data in its PDF PasteBoard Flavor?

Another hack would be to use the PDFKit to add annotations with your extra data in them -- I'm not sure if those would be copied/pasted correctly by target programs, but it's worth a try. …