canOpenURL failing for system-wide URL schemes

后端 未结 7 1947
-上瘾入骨i
-上瘾入骨i 2020-12-16 10:18

I\'m running iOS 9b5.

In my app, if a device can make a phone call, I want to color the text blue so it looks tappable. If not, I leave it black.

In order to

7条回答
  •  清歌不尽
    2020-12-16 10:53

    try this one:

    NSString *phone_number = [[yourPhoneNumber componentsSeparatedByCharactersInSet:[[NSCharacterSet characterSetWithCharactersInString:@"0123456789-+()"] invertedSet]] componentsJoinedByString:@""];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@", phone_number]]];
    

提交回复
热议问题