gpt4 book ai didi

iphone - 单触 : Can I use a UILabel to show a phone number?

转载 作者:行者123 更新时间:2023-12-01 19:25:03 25 4
gpt4 key购买 nike

我需要在 View 中显示一个电话号码,并在单击时启动调用。目前我正在使用 UILabel我不知道该怎么做。

这是正确的控制吗?如果没有,会是哪一个?

如果它是正确的,我该怎么做?

最佳答案

一个 UILabel可以使用(有点显示链接)但是 UIButton可能更合适。

您可以从此 question 中找到启动代码的代码(并回答)。

使用 UIButton上面的代码会给你:

var btn = UIButton.FromType(UIButtonType.RoundedRect);
btn.Frame = new RectangleF (10,10,100,200);
btn.SetTitle ("call me", UIControlState.Normal);
btn.TouchUpInside += delegate {
UIApplication.SharedApplication.OpenUrl (NSUrl.FromString ("tel://411"));
};

关于iphone - 单触 : Can I use a UILabel to show a phone number?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8169302/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com