メールアプリに添付ファイルを追加したいのですが可能ですか?アプリケーションでメールを送信および受信していますが、メールで添付ファイルを送信する方法がわかりません。これに対する解決策を教えてください
ありがとう、
アナンド
Furry SDKとWebサービスを使用してメッセージを交換していますが、添付ファイルを送信する必要があります。または、バイトをWebサービスに送信する方法は?
Webサービスでは、文字列を渡す場合は「@」を使用しています
バイナリデータをWebサービスに渡すときに何を使用しますか?
私のアプリでは、データ用の石鹸は
NSString *soapMsg = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"utf-8\"?>\
<soap12:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap12=\"http://www.w3.org/2003/05/soap-envelope\">\
<soap12:Body>\
<InsertAttachmentint xmlns=\"http://tempuri.org/\">\
<Filename>string</Filename>\
<FileType>string</FileType>\
<FileContentint>base64Binary</FileContentint>\
</InsertAttachmentint>\
</soap12:Body>\
</soap12:Envelope>"];
上記の石鹸では、文字列の代わりに「%@」を使用しています。base64Binaryはどうですか?