Regarding the Apple documentation there is no way to handle the phone state while the app is suspended: https://developer.apple.com/documentation/coretelephony/ctcallcenter
“虽然暂停适用,但你的申请没有接到打电话”
对于“背井”状态来说,情况是否如此? (由于背景与“暂停”对 Apple果文件所描述的国家的描述并不相同)
I m handling the phone state using the following code:
CTCallCenter *callCenter = [[CTCallCenter alloc] init];
callCenter.callEventHandler=^(CTCall* call)
{
//call state
};
我已把一份当地通知添加到“EventHandler”栏中,以便检查在我的身处背景状态时是否会收到一个电话事件,但是为了证实该栏没有被执行(我的照片有背景支持,所有收到的事件(通过TCP)在照相时得到正确处理)。