Как изменить порядок отображения данных в MFMailComposeViewController - PullRequest
1 голос
/ 07 апреля 2011

У меня есть функция электронной почты в моем приложении.Наряду с телом сообщения я прилагаю данные изображения в почте.Пока мы делаем [selfsentModalViewController: emailController animated: YES];, он представляет вид, в котором сначала будет находиться тело сообщения, а затем данные / изображение вложения.

Как изменить порядок отображения почты.Мне нужно, чтобы сначала показывалось изображение, а затем должно следовать тело сообщения.Если кто-нибудь знает, пожалуйста, ответьте немедленно.

Заранее спасибо.:)

Ответы [ 2 ]

1 голос
/ 07 апреля 2011

Ссылка MFMailComposeViewController четко указывает, что изображение прикреплено после тела и над подписью

 addAttachmentData:mimeType:fileName:

Adds the specified data as an attachment to the message.
- (void)addAttachmentData:(NSData*)attachment mimeType:(NSString*)mimeType fileName:(NSString*)filename
Parameters

attachment

    The data to attach. Typically, this is the contents of a file that you want to include. This parameter must not be nil. 
mimeType

    The MIME type of the specified data. (For example, the MIME type for a JPEG image is image/jpeg.) For a list of valid MIME types, see http://www.iana.org/assignments/media-types/. This parameter must not be nil.
filename

    The preferred filename to associate with the data. This is the default name applied to the file when it is transferred to its destination. Any path separator (/) characters in the filename are converted to underscore (_) characters prior to transmission. This parameter must not be nil.

Discussion

This method attaches the specified data after the message body but before the user’s signature. You may attach multiple files (using different file names) but must do so prior to displaying the mail composition interface. Do not call this method after presenting the interface to the user.
1 голос
/ 07 апреля 2011

Это невозможно, потому что MFMailComposeViewController встроен в Apple, и мы можем использовать его только как есть, без изменений

Хотя вы можете создать свой собственный контроллер Composer Mail ...

...