iPhone 中 UITextfield 字符限制

发布于 2024-10-05 16:29:28 字数 92 浏览 0 评论 0原文

在我的应用程序中,我需要在用户输入第四个字符后立即发布 uitextfield 的值。 当用户输入第四个字符时如何获取uitextfield的值。 谁能告诉我我该怎么做?

In My app i need to post the value of uitextfield as soon as user enter the fourth character.
how can get the value of uitextfield when the user enter the fourth character.
Can any one tell me how can i do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

友谊不毕业 2024-10-12 16:29:28

将 UITextField 的委托设置为视图控制器/文件的所有者,并使用 textViewDidChange 委托方法。

- (void)textViewDidChange:(UITextView *)textView {
    if ([textView.text length] == 4) {
        // Your post action goes here, with the value being textView.text
    }
}

Set the UITextField's delegate to the view controller/file's owner and use the textViewDidChange delegate method.

- (void)textViewDidChange:(UITextView *)textView {
    if ([textView.text length] == 4) {
        // Your post action goes here, with the value being textView.text
    }
}
橘香 2024-10-12 16:29:28

你可以使用 UITextField 委托方法 -

-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

每当用户输入字符时它都会调用..

u can use UITextField delegate method -

-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

it calls whenever user enter char ..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文