如何编写“数字键盘”代码喜欢呼叫应用程序
我怎样才能在iPhone应用程序中做这样的事情?
我需要输入一个数字,但我想要这样的东西,而不是简单的 UITextField。
如何?
谢谢!
how can I do something like this in an iPhone app?
I need to input a number but I want something like this, not a simple UITextField.
How?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我同意凯文的观点。但如果你决定实现自己的类似键盘的键盘,你可能不得不失去原始 iOS 键盘提供的所有这些好功能。
I Agree with Kevin. But if you decide to implement your own keyboard-like pad you may have to lose all those nice features provided by the original iOS keyboard.
如果您希望它看起来像您发送的内容,则必须创建一个自定义 UIView。基本上为每个控件添加一组子视图(UIButtons)。然后为自定义 UIView 创建一个委托,用于通知值更改。例如,这里有一些可以帮助您入门的粗略代码:
You will have to create a custom UIView if you want it to look like what you sent. Basically add a set of subviews (UIButtons) for each control. Then create a delegate for the custom UIView that will notify of value changes. For example, here is some rough code to get you started:
由于我的程序中的多种情况都需要一个键盘,因此我编写了一个委托驱动的键盘。
As I need one in several situations in my programs, I wrote a delegate-driven KeyPad.
我已经用新功能解决了
I've solved with new feature