本文介绍了以编程方式从iPhone拨打USSD代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何以编程方式拨打iphone的USSD代码?

How to dial USSD code for iphone programmatically?

我经过搜索后发现,出于安全原因,iOS 7已经阻止了USSD代码的使用,并且在具有<在iOS7上,我们可以手动拨打USSD代码,但不能通过编程方式拨打.

I searched and found that iOS 7 has already blocked use of USSD code for security reason and in iPhones with < iOS7 we can dial a USSD code manualy but not programmatically.

任何人都有一个主意,我们可以通过编程方式调用USSD吗?

Any one have an idea, can we call USSD programmatically like:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:\*123* <2334555>#"]]?

推荐答案

您不能拨打包含*或#个字符的号码.出于安全原因,Apple不允许在拨号字符串中使用它们.

You cannot dial a number containing * or # characters. Apple doesn't allow them in a dial string for security reasons.

Apple文档说:

这篇关于以编程方式从iPhone拨打USSD代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 16:07