Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198

Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198

Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198

Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
CoreTelephony.framework: Difference between revisions - iPhone Development Wiki

CoreTelephony.framework: Difference between revisions

From iPhone Development Wiki
No edit summary
No edit summary
Line 4: Line 4:
}}
}}
'''CoreTelephony''' is a public framework that manages telephony related tasks on iOS. It can be used as a frontend to communicate with CommCenter which talks to the baseband directly. The public portion is only a tiny part of the whole framework.
'''CoreTelephony''' is a public framework that manages telephony related tasks on iOS. It can be used as a frontend to communicate with CommCenter which talks to the baseband directly. The public portion is only a tiny part of the whole framework.
== CTSettingCopyMyPhoneNumber ==
On iOS 7 returns null.
== CTSettingCopyMyPhoneNumberExtended ==
On iOS 7 returns:
{
  kCTSettingMyPhoneNumberEditable = 0;
  kCTSettingMyPhoneNumberExists = 0;
}
No error is output to the console and I tried every entitlement that MobileSMS has, however there still might be a different entitlement required.


{{Navbox Classes}}
{{Navbox Classes}}
{{Navbox Frameworks}}
{{Navbox Frameworks}}

Revision as of 22:54, 22 January 2014

CoreTelephony.framework
Public Framework
Availabile 1.0 – present
Headers [headers.cynder.me]

CoreTelephony is a public framework that manages telephony related tasks on iOS. It can be used as a frontend to communicate with CommCenter which talks to the baseband directly. The public portion is only a tiny part of the whole framework.


CTSettingCopyMyPhoneNumber

On iOS 7 returns null.


CTSettingCopyMyPhoneNumberExtended

On iOS 7 returns:

{
 kCTSettingMyPhoneNumberEditable = 0;
 kCTSettingMyPhoneNumberExists = 0;
}

No error is output to the console and I tried every entitlement that MobileSMS has, however there still might be a different entitlement required.