想要启用号码和'&'数字符号和标点符号键盘类型

发布于 2025-01-02 06:56:09 字数 458 浏览 0 评论 0原文

我正在尝试仅启用数字和 &符号,我正在使用下面的代码,但它不起作用,我不知道问题是什么,是否有其他方法可以仅启用键盘中的数字和某些符号,请帮我解决这个问题。

提前致谢

(BOOL)keyboardInput:(id)k shouldInsertText:(id)i isMarkedText:(int)b {
char s=[i characterAtIndex:0];
if(textfield1.tag == 1)
{
    if(s>=48 && s<=57 && s == 38)  // 48 to 57 are the numbers and 38 is the '&' symbol
    {
        return YES;
    }
    else
    {
        return NO;
    }

}
return YES;}

i am trying to enable only number and & symbol , i am using below code but it is not working i don't know what is problem,any other way to enable only number and some symbol in key board ,please help me out with this.

thanks in advance

(BOOL)keyboardInput:(id)k shouldInsertText:(id)i isMarkedText:(int)b {
char s=[i characterAtIndex:0];
if(textfield1.tag == 1)
{
    if(s>=48 && s<=57 && s == 38)  // 48 to 57 are the numbers and 38 is the '&' symbol
    {
        return YES;
    }
    else
    {
        return NO;
    }

}
return YES;}

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

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

发布评论

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

评论(1

弥繁 2025-01-09 06:56:09

尝试

if((s>=48 && s<=57) || s == 38)

Try

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