打电话,发短信
2016-08-17 本文已影响0人
Ever_ccy
打电话
- (void)phoneCall:(NSString *)phoneNumber {
NSString *cleanedString = [[phoneNumber componentsSeparatedByCharactersInSet:[[NSCharacterSet characterSetWithCharactersInString:@"0123456789-+()"] invertedSet]] componentsJoinedByString:@""];
NSURL *telURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", cleanedString]];
UIApplication *myApp = [UIApplication sharedApplication];
[myApp openURL:telURL];
}
发短信
+(void)sms:(NSString *)phoneNumber
{
NSString *cleanedString = [[phoneNumber componentsSeparatedByCharactersInSet:[[NSCharacterSet characterSetWithCharactersInString:@"0123456789-+()"] invertedSet]] componentsJoinedByString:@""];
NSURL *telURL = [NSURL URLWithString:[NSString stringWithFormat:@"sms:%@", cleanedString]];
UIApplication *myApp = [UIApplication sharedApplication];
[myApp openURL:telURL];
}