关闭 iPhone 应用程序中的拼写检查器
开发 iPhone 应用程序 - 我希望在应用程序启动时关闭“拼写检查器”功能,首先,这可能吗?如果是,有人可以帮我提供相同的代码吗?
其次,如果这是可能的,如果用户暂停我的应用程序,然后启动另一个应用程序,例如发送短信,默认情况下 iOS 打开拼写检查器 - 当用户切换回我的应用程序时会发生什么app,那么拼写检查器会打开吗?
Developing a iPhone application - where I want the 'Spell checker' functionality to be turned off when the application starts, firstly, is this possible? if yes, can someone help me with the code for the same?
Secondly, if this is possible, and what would happen, if the user pauses my application, and goes and starts another application, for instance sending a SMS where by default the iOS turns on the spell checker - when the user would switch back to my app, would the spell checker be turned on then?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是否启用是文本字段的属性,而不是应用程序的属性。它在 UITextInputTraits 协议;要禁用文本字段的自动更正,您可以这样做:
Whether or not it’s enabled is a property of the text field, not of your application. It’s specified in the UITextInputTraits protocol; to disable autocorrection on a text field, you’d do this:
您可以通过在选择 UITextField 或 UITextView 选项时检查属性来完成此操作
You can do this by checking out the attributes when you select the UITextField or UITextView options