ios - How to set array of different objects (NSString, UIImage,NSString,etc) to a message body of MFMessageViewController in Same Order in array -


mfmessagecomposeviewcontroller *msgcomposer=[[mfmessagecomposeviewcontroller alloc] init];             msgcomposer.messagecomposedelegate = self; msgcomposer.recipients = [nsarray arraywithobjects:@"9688069434",nil]; msgcomposer.body = @"message body"; [self presentviewcontroller:msgcomposer animated:yes completion:nil];  

the property "body" nsstring. have tried attachments.

how assign nsarray messagebody?


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -