Search code examples
macoscocoaobjectnssearchfield

Display message when the cursor is over the NSSearchField


I need to display a message similar the following attachmnet when cursor is over searchfield displays message like "Type a word or phrase ..."

I dont know the technical term what exactly it called in cocoa terminology. So,I could not google it also.just I am interested to know how can I implement this feature.


Solution

  • They're called tooltips and can be added to any view. You can add them programmatically like so:

    [searchField setToolTip:@"Hello World!"];