我想在应用中拨打电话号码。
答案 0 :(得分:5)
请按照以下链接查看相同的
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://9016098909891"]];
答案 1 :(得分:3)
NSString* theNumber = @"9994441234";
[[UIApplication sharedApplication] openURL: [NSURL URLWithString: [NSString stringWithFormat: @"tel:%@", theNumber]]];
答案 2 :(得分:0)
您可以使用uitextview并启用手机检测功能。之后,电话号码看起来像超链接。使用以下代码。
mytextview.text = @"9943586256";
mytextview.dataDetectorTypes = UIDataDetectorTypePhoneNumber;
mytextview.editable=NO;
如果您想在自定义的tableview单元格中显示电话号码,则会很有帮助。