UILocalNotification的alertAction属性中的大写字母

时间:2014-12-09 08:32:13

标签: ios objective-c notifications uilocalnotification

我的UILocalNotifications有问题。我想显示带有大写字母的文本作为本地通知的操作滑块的标题。

这是我的代码:

UILocalNotification *localNotif = [[UILocalNotification alloc] init];

localNotif.fireDate = fireDate;
localNotif.alertBody = @"Lorem ipsum";
localNotif.alertAction = @"Foo with UPPERCASE letters.";

[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];

问题是,alertAction文本仅以小写字母显示。

有没有办法在动作滑块中显示大写字母?

编辑:更准确地说,动作滑块是正文文本下方的文本(在本例中为#34; Lorem ipsum")

0 个答案:

没有答案