在日历中选择多个日期

发布于 2024-10-19 12:30:58 字数 139 浏览 0 评论 0原文

我正在关注此博客在我的应用程序中添加日历组件。现在我想选择多个日期来显示所选日期的一些报告。 我怎样才能做到这一点?

谢谢

I am following This Blog to add a calendar component in my application. Now I want to select more than one dates to show some report for selected dates.
How can I do that ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以往的大感动 2024-10-26 12:30:58

为此,本教程中使用 tappedTile 方法来选择日期。因此,为了选择需要创建数组并添加所有字符串的日期数量。

像这样使用

NSMutableArray *eventArray//your array for adding dates,make it propeerty and alloc it.

- (void)calendarView:(KLCalendarView *)calendarView tappedTile:(KLTile *)aTile{

      int month;
    month=[aTile.date monthOfYear];
    int day;
    day=[aTile.date dayOfMonth];
    int year=[aTile.date yearOfCommonEra];
    NSString *dateForCompare;

        dateForCompare=[NSString stringWithFormat:@"%i/%i/%i",month,day,year];


   [eventArray addObject:dateForCompare];
  //use this array (having dates in string format).
  // use this by using your logical capability 

}

请参阅链接< /a>,也许对你有帮助

For this purpose in this tutorial tappedTile method is use for selection of date.so for selecting a number of dates you need to make array and add all the strings.

use like this

NSMutableArray *eventArray//your array for adding dates,make it propeerty and alloc it.

- (void)calendarView:(KLCalendarView *)calendarView tappedTile:(KLTile *)aTile{

      int month;
    month=[aTile.date monthOfYear];
    int day;
    day=[aTile.date dayOfMonth];
    int year=[aTile.date yearOfCommonEra];
    NSString *dateForCompare;

        dateForCompare=[NSString stringWithFormat:@"%i/%i/%i",month,day,year];


   [eventArray addObject:dateForCompare];
  //use this array (having dates in string format).
  // use this by using your logical capability 

}

see this link,may be it helps you

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文