I have a textField that has some text shown using placeHolder. When I run the app, the textField becomes the firstResponder and no grayed out text is displayed, So, I made the property theWindow as the first responder using theWindow’s makeFirstResponder_(me) and placed it in on applicationwillFinishLaunching_(eNotification) delegate with proper IB connection. Now, when the app runs, the text from the placeHolder is displayed, but no text can be entered as it has become un-editable.
How can I accomplish the above while still be able to enter text.
Does anyone know how to check for which object is a first responder? I looked at NSResponder class, but wasn’t able to determine if any of the listed methods can produce the answer.