MonoTouch:我可以使用 UILabel 来显示电话号码吗?
我需要在视图中显示电话号码,单击时会发起呼叫。目前我正在使用 UILabel
并且我不知道该怎么做。
这是正确的控制吗?如果没有的话会是哪一个?
如果这是正确的,我该怎么做?
I need to show a phone number in a view and that when clicked a call is initiated. Currently I'm using an UILabel
and I have no idea how to do it.
Is this the correct control? If no which one would be?
If it's the correct one, how can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用
UILabel
(显示链接的形式),但UIButton
可能更合适。您可以从此问题(和答案)找到启动代码的代码。
使用
UIButton
和上面的代码将为您提供:An
UILabel
could be used (kind of showing a link) but anUIButton
might be more appropriate.You can find the code to initiate the code from this question (and answer).
Using a
UIButton
and the code from above would give you: