当我使用bootstrap datepicker时,我需要设置启动状态 01/01 / 1930.But格式仅允许我给出天数格式。
startDate: '-31578d', (working)
但是当我使用直接日期格式时它不起作用。任何人都会帮助我
startDate: '01/01/1930', (not working)
答案 0 :(得分:0)
你必须在startDate中添加format参数,
for(UILocalNotification *notification in notificationArray)
{
NSLog(@"%@",[notification.userInfo valueForKey:@"alarmUiqueId"]);
NSLog(@"%@",alrm.uniqueId);
if ([[notification.userInfo valueForKey:@"alarmUiqueId" ] isEqualToNumber: alrm.uniqueId])
{
[[UIApplication sharedApplication] cancelLocalNotification:notification ] ;
}
}
答案 1 :(得分:0)
但我已经编写了代码,
.datepicker({
showOnFocus: true,
showOn: "button",
format: 'mm/dd/yyyy',
startDate: '-31582d',
endDate: '+0d',
autoclose: true
})