想要启用号码和'&'数字符号和标点符号键盘类型
我正在尝试仅启用数字和 &符号,我正在使用下面的代码,但它不起作用,我不知道问题是什么,是否有其他方法可以仅启用键盘中的数字和某些符号,请帮我解决这个问题。
提前致谢
(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
Try