Call status monitoring in iOS: CoreTelephony and ioscoretelephony

Source: Internet
Author: User

Call status monitoring in iOS: CoreTelephony and ioscoretelephony

To listen to the phone status in the program, you can introduce the CoreTelephony framework, which includes telephone-related APIs to monitor incoming calls and view carrier information. The following is the specific code to monitor incoming calls. You must write the center as a separate attribute and use strong references. OtherwiseViewDidLoadCreate a center,ViewDidLoadAfter the method is called, the center is destroyed and the incoming power cannot be detected.

The initial status of a call is CTCallStateIncoming and CTCallStateDialing. After the call is established, the call status changes to CTCallStateConnected, and when the call is terminated, the call status changes to CTCallStateDisconnected)

CTCallCenter * center = [[CTCallCenter alloc] init]; center _ = center; center. callEventHandler = ^ (CTCall * call) {NSLog (@ "call: % @", call. description); if ([call. callState isEqualToString: @ "CTCallStateDialing"]) {// call status} if ([call. callState isEqualToString: @ "CTCallStateDisconnected"]) {// disconnected }};

 

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.