Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Iphone 中,如何使用私有 API CTCallDial() 直接拨打电话?主要是不知道CTCallDial的具体参数。
1) 链接到 CoreTelephony.framework
2)定义像
extern "C" id CTCallDial(NSString * number);
并使用:
CTCallDial(@"0123456789");
(返回创建的 CTCallRef,可以安全地转换为 id (CTCall *))