如何在目标c中拨打假电话

时间:2016-07-18 08:53:46

标签: ios objective-c

任何人都知道实施假接收电话[假接收电话]

3 个答案:

答案 0 :(得分:1)

只是假电话代码

  1. 仅在应用程序打开时才会起作用
  2. 将图片来电图像添加到完整视图。 (为了更有吸引力,请使用UIImageViewAnimation动画幻灯片来回答)

    UIImageView * callImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,self.view.frame.size.width,self.view.frame.size.height)]; [[self view] addSubview:callImageView];

  3. enter image description here

    1. 使用AVAudioPlayer播放铃声

答案 1 :(得分:0)

我认为你需要使用像twilio这样的第三方服务,他们会发起真正的电话呼叫。

答案 2 :(得分:-1)

您可以将此代码用于电话:

NSString *StrPhone = [NSString stringWithFormat:@"telprompt://%@", PhoneNumber];
        NSURL *url = [NSURL URLWithString:StrPhone];
        [[UIApplication  sharedApplication] openURL:url];