I'm knee deep in font metrics with NSTextView at the moment. I was hoping a developer here could shed some light as to what's going on.

With Myriad Pro in a default NSTextView (dragged from IB and run in a fresh project), here's what you get:

selected text unselected text

Notice how the selected rect has the same height as the insertion point.

Now for behavior from Pages:

unselected pages text selected pages text

Notice how the selected rect is similar to the regular text view version, but the insertion point height is actually more reflective of the font (and smaller!).

Weird.

Why do I care? Here is a screen of my application with Helvetica, and then with Myriad:

My App Helvetica My App Myraid Pro

Notice that in both cases, the outline symbol is perfectly centered with the insertion point height. Those symbols are actually subviews, and not in the text stream. Notice those symbols in Pages. They remain centered for Myriad. Clearly Apple realized something and fixed it. Any ideas what they did?

Thanks!

link|improve this question

feedback

1 Answer

This isn't a mistake on Apple's part but rather an assumption on yours. This is a function of font metrics as well as line height.The insertion point takes the whole line height; the drawn font parts don't.

I thought it was you who I pointed to the Font Handling guide a few days ago. Either way, you need to understand this topic thoroughly so you can determine where to draw your dot.

link|improve this answer
In the case of pages, the insertion point for Myraid pro is smaller than the whole line height. That's what I'm confused about. – DexterW Feb 17 '11 at 14:15
Currently, if I make the dot view the same size as the cap height, and offset it from the glyph rect by (baselineoffset - capheight), it seems to work. I just want to know how apple cleaned up their insertion point. – DexterW Feb 17 '11 at 14:16
Good point but you can't really go by Pages' implementation since its UI does a lot of custom stuff. You need to go by TextEdit's behavior since it uses the stock NSTextView. I wouldn't be surprised to see a future NSTextView update that disregards line height when drawing the insertion point but I wouldn't hold my breath, either. :-) – Joshua Nozzi Feb 17 '11 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.