您好 Stackoverflow 的好人,我正在尝试创建一个获取几秒钟的函数,然后创建一个本地警报,这就是我所拥有的:
我创建了一个名为 manualtimer.h 的类,这是一个 Nsobject 类。
在 manualTimer.hi 中有以下代码:
-(void)tempoAlerta:(NSTimeInterval *)otempo;
在 manualTimer.M 我有以下代码:
-(void)tempoAlerta:(NSTimeInterval *)otempo {
UIApplication* myapp = [UIApplication sharedApplication];
UILocalNotification* localnote = [[UILocalNotification alloc]init];
localnote.fireDate = [NSDate dateWithTimeIntervalSinceNow:*otempo];
localnote.alertBody = @"Nice Alert";
localnote.timeZone = [NSTimeZone defaultTimeZone];
NSMutableArray *notifications = [[NSMutableArray alloc] init];
[notifications addObject:localnote];
myapp.scheduledLocalNotifications = notifications;
}
在我的视图控制器中,我导入了 manualTimer.h,但由于某种原因无法调用函数 tempoAlerta()
有任何想法吗?xCode 显示没有错误?