How can I add a search icon on the left in a NSTextField? You can see the same in many other applications.
Asked
Active
Viewed 785 times
1
-
4NSSearchField may be what you want. – Extra Savoir-Faire Nov 05 '12 at 18:44
1 Answers
-2
I guess it is this:
text = NSTextField.alloc().initWithFrame_(((0, 0), (30.0, 22.0)))
text.setCell_(NSSearchFieldCell.alloc().init())

Albert
- 65,406
- 61
- 242
- 386