Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在视图中包含键盘?我希望它成为观点的一部分,而不是被驳回。
Birdfeedapp 在它的“添加帐户”模式视图中执行此操作。
只需将此代码添加到您的视图中。这将显示键盘:
-(void) viewDidAppear:(BOOL)animated{ [super viewDidAppear:animated]; [YOURTEXTVIEW becomeFirstResponder]; }
将文本字段设置为第一响应者并将其保留为第一响应者或创建自己的键盘。