如何使用目标c在外部链接中嵌入手机号码。
答案 0 :(得分:2)
NSString *telephoneNumber = @"+123456789"
NSURL *target = [[[NSURL alloc] initWithString:[NSString stringWithFormat:@"tel:%@", telephoneNumber]] autorelease];
[[UIApplication sharedApplication] openURL:target];
你的意思是这样吗?