The reason why I care about performance is that I am modifying UI
elements the user is watching as the ultimate result of these
calculations and I don't want that to feel sluggish.
So... you are doing a bunch of GUI operations that involve re-layout and re-drawing of a bunch of stuff and you are worried about the performance of an if/else statement?
Graphical operations in apps are huge consumers of CPU cycles. Orders of magnitude more cycles will be consumed during drawing in response to a graphical change compared to, say, a call to objectForKey: and a call to hash (which is what a dictionary lookup implies).
Measure your app's performance. Figure out why it is sluggish. Then fix the problem.
The first step would be to use the CPU sampling Instrument to see where those cycles are going.
If that doesn't help, use one of the various graphics perf analysis tools to see if that is your bottleneck.
It can also easily be that you are doing something multiple times that needs to be done only once; maybe your user interaction tracking code is causing the UI to be re-laid out multiple times when it only needs to be done once (I just fixed exactly this kind of performance problem in an app I'm working on).