NSTextfield is not working when I make a full screen app.
I have also made first responder of textfield. How can I make it enable and working?
NSTextfield is not working when I make a full screen app. I have also
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Full Screen window won’t get any keyboard events the way it is, due to the fact that it was created with with the
NSBorderlessWindowMaskstyle mask. Apparently windows of this type can’t become “key windows”. However, you can fix this problem by subclassingNSWindowand overriding thecanBecomeKeyWindowmethod.