如何从数组加载nsnotification文本

时间:2010-12-20 19:40:55

标签: iphone

我想知道如何使用数组加载nsnotifcation中显示的文本? 我希望从一个数组加载此通知中显示的消息,而不是它是一个固定的文本值。

1 个答案:

答案 0 :(得分:1)

不确定您的问题是什么,但如果您将NSString作为数组中的对象,则可以使用以下方法访问它:

NSString *yourMessageString = [yourArray objectAtIndex:0];

例如。

修改 要将警报消息设置为数组中的消息,只需执行以下操作:

UIAlertView *alert = [[UIAlertView alloc] 
                     initWithTitle:@"Your Title" 
                     message:[yourArray objectAtIndex:0] 
                     delegate:self 
                     cancelButtonTitle:@"OK" 
                     otherButtonTitles:nil];
[alert show];
[alert release];