Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using UITextField as a UISearchBar replacement and "stealing" the magnifying glass icon from the original UISearchBar with this crazy code:

    UISearchBar *originalSearchBar = [[UISearchBar alloc] init];
    for (UIView *searchBarSubview in [originalSearchBar subviews]) {
        if([searchBarSubview isKindOfClass:[UITextField class]]) {
            UITextField *textField = (UITextField *)searchBarSubview;
            [_textField setLeftView:[textField leftView]];
            [_textField setLeftViewMode:UITextFieldViewModeAlways];
        }
    }

As you've probably guessed I don't want to use my own bitmap.

Isn't there an easier accessible magnifying glass icon somewhere in Cocoa? Am I doing it wrong?

share|improve this question

2 Answers

up vote 2 down vote accepted

I don't know of any standard image for it in Cocoa (and there is no character for it in Unicode either).

An image for this is part of the Dock bundle, however:

/System/Library/CoreServices/Dock.app/Contents/Resources/ectl_search_magnify.png
share|improve this answer
Actually, there is a unicode character! I've tried it and it looks good: fileformat.info/info/unicode/char/1f50d/index.htm – Rudolf Adamkovic Aug 5 '12 at 10:05
Nice...I seem to recall having trouble making that work at one point (perhaps it wasn't supported in the fonts of all OS versions?). In any case it's there now...it is even "in color". So, use that. :) – Kevin Grant Aug 5 '12 at 15:34

So, here's the code with the unicode character:

    UILabel *magnifyingGlass = [[UILabel alloc] init];
    [magnifyingGlass setText:[[NSString alloc] initWithUTF8String:"\xF0\x9F\x94\x8D"]];
    [magnifyingGlass sizeToFit];

    [textField setLeftView:magnifyingGlass];
    [textField setLeftViewMode:UITextFieldViewModeAlways];
share|improve this answer
the resulting image look great! Thanks a lot! – Zennichimaro Apr 10 at 9:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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