如何使用 Objective-C 在 iPhone 中查看未接来电?
如何使用 Objective-C 在 iPhone 中查看未接来电?
How can I check missed call in iPhone using Objective-C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 Objective-C 在 iPhone 中查看未接来电?
How can I check missed call in iPhone using Objective-C?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
第三方软件无法访问 iPhone 手机。幸运的是。
There is no access to the iPhone phone from third party software. Luckily.
沙箱可防止第三方应用程序访问手机功能。因此无法检测未接来电。
The sandbox prevents access to the phone functions from third-party apps. Thus there is no way to detect missed calls.
使用核心电话框架,检测呼叫状态变化。
监听来电。现在,当有来电时,您的应用程序将收到通知。
此后,当弹出警报时,将调用applicationWillResignActive。
第二种情况表示未接来电。
Using Core Telephony framework, detect for call state changes.
Listen for incoming calls. Now your application will be notified when there is an incoming call.
After this, when the alert pops up, applicationWillResignActive is called.
The second case indicates a missed call.
当您有来电时,
将调用该函数,如果错过来电,应用程序将再次激活并
调用该函数。
这样,您就可以检测未接来电。据我所知,没有其他方法可以做到这一点。
唯一的缺点是,当您的应用程序处于活动状态时锁定/解锁设备时也会调用这些方法,因此您将无法知道是未接来电还是用户锁定了设备。
When you have an incoming call, the function
is called and if the call gets missed, the application will be active again and the function
is called.
This way, you can detect missed calls. There is no other method to do this that i am aware of.
The only drawback is that these methods are also called when you Lock/Unlock the device when your application is active so you will not be able to know whether it was a missed call or the user locked the device.