スタンドアロンの iMessage アプリケーションを構築しています。UIViewController
から継承する がありますMSMessagesAppViewController
。activeConversation
常にゼロのようです。理由はありますか?Apple がサンプルの Ice Cream プロジェクトでメッセージを送信する方法を反映しています。
MSConversation *conversation = [self activeConversation];
if (conversation) {
MSMessageTemplateLayout *layout = [[MSMessageTemplateLayout alloc] init];
layout.caption = @"Caption";
layout.subcaption = @"subcaption";
MSMessage *message = [[MSMessage alloc] init];
message.URL = [NSURL URLWithString:@"www.example.com"];
message.layout = layout;
[conversation insertMessage:message completionHandler:^(NSError *error) {
if (error) {
NSLog(@"Error sending message %@", [error localizedDescription]);
}
}];
}
else {
NSLog(@"No &%#%&^# conversation found");
}
UIViewController
が に埋め込まれていることに注意してくださいUINavigationController
。