1

我正在开发一个项目,其中我为 iPad 集成了全屏日历视图。

ios_calendar可可控件上可用的视图在这里

现在,我想要的是在不同的日期添加标签。

还要显示单个标签,从开始日期延伸到结束日期。

有什么解决办法吗?

如果我想在Selected Date Cell.
但找不到如何在一年中的其他日期贴标签。

- (void) calendarView: (CXCalendarView *) calendarView
        didSelectDate: (NSDate *) date {

    NSLog(@"Selected date: %@",date);

    UILabel *labeltext=[[UILabel alloc]initWithFrame:CGRectMake(100, 0, 50, 50)];
    labeltext.text=@"hello";
    labeltext.backgroundColor=[UIColor redColor];
    [self.calendarView addSubview:labeltext];

}
4

0 回答 0