我如何向 LocalNotifaction 添加振动和声音
代码:
UILocalNotification *notification = [[UILocalNotification alloc]init];
NSDate *firedate = settime.date;
[notification setFireDate:firedate];
[notification setAlertBody:@"הלכה יומית"];
[notification setAlertAction:@"הלכה"];
[[UIApplication sharedApplication]scheduleLocalNotification:notification];