vote up 7 vote down star
8

In Apple's iPhone apps (like Contacts), they have a nice magnifying glass icon at the top of the table view index. Since the table view index API is character-based, I assume that this magnifying glass is a Unicode character. So far I've resorted to placing a question mark character there, but that looks lame.

Can anyone tell me what character the magnifying glass is?

flag
I'm not sure so I won't make this an answer but you are almost certainly out of luck. I mainly base this off of the fact that both the facebook and linkedin apps are missing this feature. If it where available I would expect to find it working in those. – carson Oct 24 '08 at 20:56
Thanks. I've gone ahead and filed a bug report. – David Grant Oct 24 '08 at 22:35

6 Answers

vote up 18 vote down check

@"{search}" FTW.

Return that title and it's magically replaced by the correct glyph.

link|flag
1  
Holy crap, that's it! Thanks! – David Grant Nov 14 '08 at 20:29
vote up 5 vote down

Returning UITableViewIndexSearch as section index title (same as @"{search}") also works.

link|flag
just to add, the docs note this is available in iPhone OS 3.0b and later. – hkatz Aug 6 at 21:38
vote up 1 vote down

You can certainly put a Unicode character in the table view index (I've done this with other characters) and put your header in the first table section in lieu of of the tableViewHeader. That said, I've yet to find the magnifying glass in any of the unicode references. The closes I've found is the Telephone Recorder symbol - ⌕ (\u2315). Unfortunately, it points in the wrong direction and the "handle" extends into the "magnifying glass."

link|flag
Yeah - I've been all through the characters and haven't seen it. My other thought is that it's in one of the font sets which lives on the iPhone and not in OS X. Lastly, perhaps it isn't a character at all; just some private icon Apple is swapping in internally. – David Grant Oct 24 '08 at 23:06
I grabbed a copy of Friend Book during the short time it was on the app store and it had a magnifying glass at the top of the index, which is why I assumed it was a Unicode character. But, like you said, I've yet to find it among any of the characters I've seen. – Jablair Oct 25 '08 at 0:56
vote up 1 vote down

You could use a space as the character for the index and then overlay an UIImageView that has user interaction disabled and contains the following image: Search Icon

link|flag
vote up 0 vote down

Someone claims that Apple told them this isn't supported in the SDK.

link|flag
vote up 0 vote down

I can understand why someone might not want to use the image, although it is very pretty... characters are so much easier to maintain and can scale with little effort.

⚦ is another unicode option for a magnifying lens-like glyph.. again it's not facing the correct direction.. I believe it's really some kind of hermaphroditic gender symbol. The html for the unicode symbol above is ⚦

I really think a magnifying lens symbol should be added to the unicode character set under "26: Misc. Symbols".

link|flag

Your Answer

Get an OpenID
or

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