需要帮助openURL:来自iPhone应用程序的[NSURL URLWithString:@“tel:+91(number)”]]

时间:2011-04-12 06:42:53

标签: iphone

我需要拨打一个号码+91(号码),但如果我使用tel:// url,则不会拨打iphone应用程序。 如何拨打任何格式的号码。

1 个答案:

答案 0 :(得分:1)

iphone将使用下面列出的任一格式拨打号码。

[[UIApplication sharedApplication] 
                    openURL:[NSURL URLWithString:@"tel://15415551234"]];

[[UIApplication sharedApplication] 
                    openURL:[NSURL URLWithString:@"tel:15415551234"]];

[[UIApplication sharedApplication] 
                    openURL:[NSURL URLWithString:@"tel:1-541-555-1234"]];

Link for Apple documentation on the tel: url scheme