찾다

 >  Q&A  >  본문

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

怎样跳转到系统日历?

ringa_leeringa_lee2773일 전870

모든 응답(1)나는 대답할 것이다

  • 怪我咯

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

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

    指定日期:

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

    회신하다
    0
  • 취소회신하다