Search Results

2
votes

Device Information from NSEvent/CGEvent

DDHidLib is neat, and in fact I rewrote parts of it for Delicious Library 2 for Leopard's newer HID APIs, and submitted the changes back to the original author -- if you write him you can get the L …
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

Xcode 3.2 documentation, missing symbol definitions like CGPoint?

If you're option-clicking I believe only symbols in the frameworks you are linking to in your current Xcode project are looked-up. Is your current project linked against AppKit and/or CoreGraphics? …
2
votes

How to maintain the scroll position in NSScrollView when changing scale?

Keeping the same scroll position after scaling isn't easy. One thing you need to decide is what you mean by "the same" - do you want the top, middle, or bottom of the visible area before scaling to …
1
vote

How to test whether application handles slow/flaky filesystems properly?

Maybe buy a slow thumb drive? I've found some at Best Buy that were glacial. Plug them in through several USB hubs and maybe a keyboard, as well, so they'll be on a very pokey connection. - …
1
vote

NSURLDownload delegate methods on a separate thread

My first question is, what are you using NSURLDownload to do? Are you just downloading a bunch of files to the disk, or do you really want the data in memory? If you're downloading …
2
votes

Why does the dialog I created in Leopard look terrible in Tiger?

If I recall correctly, under Tiger you had to set the background pattern of the window if you wanted to change its color - the 'color' was overridden by the (ugly) default aqua pattern. On …
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 …
4
votes

Auto-save with Cocoa and Core Data

At the end of each event in an AppKit app, CoreData will run a -processPendingTransactions for you. One side-effect of this is that if you've registered with your NSManagedObjectContext to …
2
votes

Secure password storage for a launchd daemon

You can create your own Keychains and use them willy-nilly. For example, you could have one inside your app bundle, if you have an app bundle. Or you could run the daemon as a particular us …