【发布时间】:2014-01-23 18:16:12
【问题描述】:
我正在接收来自网络服务的消息,这些消息保存在 NSMutableArray 中。
如果我在数组中有 5 条消息,我需要在单个警报视图中显示所有消息。
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];
【问题讨论】: