{"id":21778,"date":"2015-06-26T13:57:17","date_gmt":"2015-06-26T08:27:17","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=21778"},"modified":"2016-12-19T15:17:38","modified_gmt":"2016-12-19T09:47:38","slug":"detecting-phone-call-interruption-in-ios-app","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/","title":{"rendered":"Detecting phone call interruption in iOS App"},"content":{"rendered":"<p style=\"text-align: justify;\">One of the default <a href=\"https:\/\/tothenewco.pro\/mobile-ios-application-development-services\">behaviors of iOS is that it stops<\/a> all the services &amp; functions of the app while you are on a phone call.<\/p>\n<p style=\"text-align: justify;\">While writing an audio-video iOS App, we must handle phone call&#8217;s interruption properly to resume the app.\u00a0It is possible\u00a0to detect a phone call and it&#8217;s states with the help of Core Telephony framework. Following steps will guide you to handle phone calls in your iPhones properly.<\/p>\n<p style=\"text-align: justify;\"><strong>Steps to follow :<\/strong><\/p>\n<p>Add\u00a0<strong>CoreTelephony<\/strong>\u00a0Framework.<\/p>\n<p>Import the following classes of <strong>CoreTelephony<\/strong>\u00a0into your class wherever you need to handle or detect phone call&#8217;s interruption.<\/p>\n<pre>#import &lt;CoreTelephony\/CTCallCenter.h&gt;\r\n#import &lt;CoreTelephony\/CTCall.h&gt;\r\n<\/pre>\n<p>Make an object of CTCallCenter into your handler class.<\/p>\n<pre>@property (nonatomic, strong) CTCallCenter *objCallCenter;<\/pre>\n<p>Add a notification observer for call state changed inside your handler class <strong>viewDidLoad<\/strong>\u00a0method.<\/p>\n<pre> [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(CallStateDidChange:) name:@\"CTCallStateDidChange\" object:nil];<\/pre>\n<p>Write a call event handler for the \u00a0call center in <strong>viewDidLoad<\/strong><\/p>\n<pre>self.objCallCenter = [[CTCallCenter alloc] init];\r\nself.objCallCenter.callEventHandler = ^(CTCall* call) {\r\n        \/\/ anounce that we've had a state change in our call center\r\n        NSDictionary *dict = [NSDictionary dictionaryWithObject:call.callState forKey:@\"callState\"];\r\n        [[NSNotificationCenter defaultCenter] postNotificationName:@\"CTCallStateDidChange\" object:nil userInfo:dict];\r\n    };\r\n<\/pre>\n<p>Write call state changed selector<\/p>\n<pre>- (void)CallStateDidChange:(NSNotification *)notification\r\n{\r\n    NSLog(@\"Notification : %@\", notification);\r\n    NSString *callInfo = [[notification userInfo] objectForKey:@\"callState\"];\r\n    \r\n    if([callInfo isEqualToString: CTCallStateDialing])\r\n    {\r\n        \/\/The call state, before connection is established, when the user initiates the call.\r\n        NSLog(@\"Call is dailing\");\r\n    }\r\n    if([callInfo isEqualToString: CTCallStateIncoming])\r\n    {\r\n        \/\/The call state, before connection is established, when a call is incoming but not yet answered by the user.\r\n        NSLog(@\"Call is Coming\");\r\n    }\r\n    \r\n    if([callInfo isEqualToString: CTCallStateConnected])\r\n    {\r\n        \/\/The call state when the call is fully established for all parties involved.\r\n        NSLog(@\"Call Connected\");\r\n    }\r\n    \r\n    if([callInfo isEqualToString: CTCallStateDisconnected])\r\n    {\r\n        \/\/The call state Ended.\r\n        NSLog(@\"Call Ended\");\r\n    }\r\n\r\n}<\/pre>\n<p>Perform the tasks according to the phone call&#8217;s state.<\/p>\n<p style=\"text-align: justify;\">Hope It Helps \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the default behaviors of iOS is that it stops all the services &amp; functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call&#8217;s interruption properly to resume the app.\u00a0It is possible\u00a0to detect a phone call and it&#8217;s states with the help [&hellip;]<\/p>\n","protected":false},"author":117,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":61,"footnotes":""},"categories":[1400,1772,1],"tags":[1925,1926,4848,1923,1924,1922],"class_list":["post-21778","post","type-post","status-publish","format-standard","hentry","category-ios","category-mobility","category-technology","tag-audio-video-interruption","tag-coretelephony-call-handling","tag-ios","tag-phone-call-handling-in-ios","tag-resume-app-after-phone-call","tag-system-interruption"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"One of the default behaviors of iOS is that it stops all the services &amp; functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call&#039;s interruption properly to resume the app. It is possible to detect a phone call and it&#039;s states with the help\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"vishal.gupta\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Detecting phone call interruption in iOS App | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"One of the default behaviors of iOS is that it stops all the services &amp; functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call&#039;s interruption properly to resume the app. It is possible to detect a phone call and it&#039;s states with the help\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"article:tag\" content=\"ios\" \/>\n\t\t<meta property=\"article:tag\" content=\"mobility\" \/>\n\t\t<meta property=\"article:tag\" content=\"technology\" \/>\n\t\t<meta property=\"article:tag\" content=\"audio-video interruption\" \/>\n\t\t<meta property=\"article:tag\" content=\"coretelephony call handling\" \/>\n\t\t<meta property=\"article:tag\" content=\"phone call handling in ios\" \/>\n\t\t<meta property=\"article:tag\" content=\"resume app after phone call\" \/>\n\t\t<meta property=\"article:tag\" content=\"system interruption\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-06-26T08:27:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-12-19T09:47:38+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Detecting phone call interruption in iOS App | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"One of the default behaviors of iOS is that it stops all the services &amp; functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call&#039;s interruption properly to resume the app. It is possible to detect a phone call and it&#039;s states with the help\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#article\",\"name\":\"Detecting phone call interruption in iOS App | TO THE NEW Blog\",\"headline\":\"Detecting phone call interruption in iOS App\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-06-26T13:57:17+05:30\",\"dateModified\":\"2016-12-19T15:17:38+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#webpage\"},\"articleSection\":\"iOS, Mobility, Technology, Audio-video interruption, coreTelephony Call Handling, iOS, phone call handling in iOS, Resume App after phone call, system interruption\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#listItem\",\"name\":\"Detecting phone call interruption in iOS App\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#listItem\",\"position\":3,\"name\":\"Detecting phone call interruption in iOS App\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/\",\"name\":\"vishal.gupta\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/abfcdc3ab6fcfb7b68f54fb51ce6f5928b015725d2e54c94aec598a9ab668c0c?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"vishal.gupta\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/\",\"name\":\"Detecting phone call interruption in iOS App | TO THE NEW Blog\",\"description\":\"One of the default behaviors of iOS is that it stops all the services & functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call's interruption properly to resume the app. It is possible to detect a phone call and it's states with the help\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/detecting-phone-call-interruption-in-ios-app\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vishal-gupta\\\/#author\"},\"datePublished\":\"2015-06-26T13:57:17+05:30\",\"dateModified\":\"2016-12-19T15:17:38+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Detecting phone call interruption in iOS App | TO THE NEW Blog","description":"One of the default behaviors of iOS is that it stops all the services & functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call's interruption properly to resume the app. It is possible to detect a phone call and it's states with the help","canonical_url":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#article","name":"Detecting phone call interruption in iOS App | TO THE NEW Blog","headline":"Detecting phone call interruption in iOS App","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vishal-gupta\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2015-06-26T13:57:17+05:30","dateModified":"2016-12-19T15:17:38+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#webpage"},"articleSection":"iOS, Mobility, Technology, Audio-video interruption, coreTelephony Call Handling, iOS, phone call handling in iOS, Resume App after phone call, system interruption"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#listItem","name":"Detecting phone call interruption in iOS App"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#listItem","position":3,"name":"Detecting phone call interruption in iOS App","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/vishal-gupta\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/vishal-gupta\/","name":"vishal.gupta","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/abfcdc3ab6fcfb7b68f54fb51ce6f5928b015725d2e54c94aec598a9ab668c0c?s=96&d=mm&r=g","width":96,"height":96,"caption":"vishal.gupta"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/","name":"Detecting phone call interruption in iOS App | TO THE NEW Blog","description":"One of the default behaviors of iOS is that it stops all the services & functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call's interruption properly to resume the app. It is possible to detect a phone call and it's states with the help","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vishal-gupta\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vishal-gupta\/#author"},"datePublished":"2015-06-26T13:57:17+05:30","dateModified":"2016-12-19T15:17:38+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"article","og:title":"Detecting phone call interruption in iOS App | TO THE NEW Blog","og:description":"One of the default behaviors of iOS is that it stops all the services &amp; functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call's interruption properly to resume the app. It is possible to detect a phone call and it's states with the help","og:url":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","article:tag":{"0":"ios","1":"mobility","2":"technology","3":"audio-video interruption","4":"coretelephony call handling","6":"phone call handling in ios","7":"resume app after phone call","8":"system interruption"},"article:published_time":"2015-06-26T08:27:17+00:00","article:modified_time":"2016-12-19T09:47:38+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Detecting phone call interruption in iOS App | TO THE NEW Blog","twitter:description":"One of the default behaviors of iOS is that it stops all the services &amp; functions of the app while you are on a phone call. While writing an audio-video iOS App, we must handle phone call's interruption properly to resume the app. It is possible to detect a phone call and it's states with the help","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"21778","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"article","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 16:06:57","updated":"2024-02-29 09:27:24","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tDetecting phone call interruption in iOS App\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Detecting phone call interruption in iOS App","link":"https:\/\/tothenewco.pro\/blog\/detecting-phone-call-interruption-in-ios-app\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/21778","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/117"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=21778"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/21778\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=21778"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=21778"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=21778"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}