Mac - 让文本框成为第一响应者
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac - 让文本框成为第一响应者相关的知识,希望对你有一定的参考价值。
[[textfield window] makeFirstResponder:textfield];
设置window 的位置。 windowWillLoad:中设置 在 windowDidBecomeMain: 方法中设定 window 现实的位置。 [self.window setFrameOrigin:NSMakePoint(0,0)];
- (IBAction)takeSelectedIndexFrom:(nullable id)sender; 设置调用这个方法可以翻页。 NSPagecontrolller item.labelConstraint.constant = 20 * self.ibdLayout.widthRatio;
设定 固定的window 如果主window 关闭,使用通知,关闭整个APP 显示如下: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(browserWindowWillClose:) name:NSWindowWillCloseNotification object:browserWindow];
以上是关于Mac - 让文本框成为第一响应者的主要内容,如果未能解决你的问题,请参考以下文章
如何使表格单元格中的 UITextField 成为第一响应者?
如何呈现带有文本字段的 UIAlertController,但该文本字段不能是第一响应者?