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
Post a Comment