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
CKMadridService: Difference between revisions - iPhone Development Wiki

CKMadridService: Difference between revisions

From iPhone Development Wiki
(Created article about CKMadridService)
 
Line 1: Line 1:
==CKMadridService==
==CKMadridService==


'''CKMadridService''' is Apple's secret codename for the service used to send iMessages. Available in iOS 5.
'''CKMadridService''' is Apple's secret codename for the service used to send iMessages. Available only in iOS 5.


==Creating and sending an iMessage with CKMadridService==
==Creating and sending an iMessage with CKMadridService==

Revision as of 17:27, 27 August 2013

CKMadridService

CKMadridService is Apple's secret codename for the service used to send iMessages. Available only in iOS 5.

Creating and sending an iMessage with CKMadridService

//Compose a message
CKMessageStandaloneComposition *composition = [CKMessageStandaloneComposition newCompositionForText:@"Test Message"];

//Get a reference to the shared conversation list
CKConversationList *conversationList = [CKConversationList sharedConversationList];

//Get a reference to the shared Madrid Service
CKMadridService *madridService = [CKMadridService sharedMadridService];

NSString *messageRecipient = @"+1234567890"; // This is the phone number or email of the message recipient

//Make a Conversation
CKSubConversation *conversation = [conversationList conversationForGroupID:messageRecipient create:YES service:madridService];

//Create a message
CKMadridMessage *message = [madridService newMessageWithComposition:composition forConversation:conversation];

[madridService sendMessage:message];

[message release];
[composition release];
  • Note that you are responsible for releasing the message and the composition, but not the conversation.

References

Header: https://github.com/masbog/PrivateFrameworkHeader-iOS-iPhone-5.-/blob/master/ChatKit.framework/CKMadridService.h