search

Home  >  Q&A  >  body text

ios - 怎样跳转到系统的日历?

怎样跳转到系统日历?

ringa_leeringa_lee2773 days ago871

reply all(1)I'll reply

  • 怪我咯

    怪我咯2017-04-17 14:38:55

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"calshow://"]];

    Specified date:

    NSInteger interval = [[NSDate date]timeIntervalSinceReferenceDate];   
    NSURL *url = [NSURL URLWithString:[NSStringstringWithFormat:@"calshow:%ld", interval]];
    [[UIApplication sharedApplication] openURL:url];
    

    reply
    0
  • Cancelreply