使用按钮标题打开手机应用程序

时间:2012-09-15 00:36:20

标签: ios uibutton openurl

我有一个UIButton,电话号码作为标题。

此代码是否会打开带有标题号的手机应用程序?

- (IBAction)callContact:(id)sender 
{
    [[UIApplication sharedApplication] openURL: 
        [NSURL URLWithString:telfButton.titleLabel.text]];
}

它给了我一个错误。

1 个答案:

答案 0 :(得分:0)

如其他答案中所述,您必须使用“tel://”启动手机应用程序并拨打该号码。但是,您可以使用NSString的{​​{1}}在“tel://”之后的按钮标题中添加数字。

stringWithFormat