How can I make phone call in iOS?

后端 未结 8 2337
不思量自难忘°
不思量自难忘° 2020-12-07 23:05

How can I make a phone call in Objective-C?

8条回答
  •  一生所求
    2020-12-07 23:34

    REMOVE EMPTY SPACES IN PHONE NUMBER

    NSString *phoneNumberString = @"123 456";
    phoneNumberString = [phoneNumberString stringByReplacingOccurrencesOfString:@" " withString:@""];
    phoneNumberString = [NSString stringWithFormat@"tel:%@", phoneNumberString];
    NSURL *phoneNumberURL = [NSURL URLWithString:phoneNumberString]];
    [[UIApplication sharedApplication] openURL:phoneNumberURL];
    

提交回复
热议问题