I am receiving messages from web service which i saves in NSMutableArray.
if i have 5 messages inside array i need to show all of them within single alert view.
NSString *temp; // Here there is only one message, i want to read all message from Array and feed to alert view.
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Info"
                            message: temp
                            delegate:nil
                            cancelButtonTitle:@"OK"
                            otherButtonTitles:nil];
[alertView show];
 
     
     
    