我想在iOS应用中每天显示一条提示。我已经为Android做过这个,但是我没有在iOS中做到这一点。
我有一个文件,我已经随机写了提示并从文件中提取提示,现在我想每天显示一个提示。
我尝试了UILocalNotification
,但没有帮助。
UILocalNotification *locNot = [[UILocalNotification alloc] init];
NSDate *now = [NSDate date];
NSInterval interval = 24 * 60 * 60;
locNot.fireDate = [NSDate dateWithTimeInterval: interval fromDate: now];
locNot.repeatInterval = NSDayCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification: locNot];
[locNot release];
这是一种正确的做法吗?在Xcode中,它给了我:
错误未声明的标识符间隔...
答案 0 :(得分:0)
你错过了这个NSTimeInterval *time = (int)24 * 60 * 60;