我有一个 UILocalNotification 对象,我设置了重复间隔日、周和月。我在访问对象的触发日期时完全没有问题:
[cell.detailTextLabel setText:[notification1.fireDate description]];
但我在获得下一个开火日期时遇到了麻烦。如果我将上面的 notification1 对象打印到控制台,我会得到:
<UIConcreteLocalNotification: 0x613e060>{fire date = 2010-11-29 03:53:52 GMT, time zone = America/Denver (MST) offset -25200, repeat interval = 16, next fire date = 2010-11-30 03:53:52 GMT}
这个对象在某处包含我需要显示下一个火灾日期的值或数据......但我找不到它!有人知道我可以在哪里以编程方式获得它吗?
谢谢