无论应用程序是在后台还是在前面,如何继续检测电话是否处于活动状态,以便在有人来电时向用户发送本地通知?
我使用此代码来检测电话是否处于活动状态
#import <CoreTelephony/CTCallCenter.h>
CTCallCenter * callCenter = [[CTCallCenter alloc] init];
if([callCenter currentCalls] ) {
NSLog(@"phone call");
}
我使用设备来测试应用程序。