将图像添加到Iphone中的日历视图

我需要在iPhone的默认日历视图顶部添加一个图像。 如果任何机构知道如何执行这个请回应。我正在使用Tapku库来显示日历。 Kal库也可以使用,如果这可以在那里执行。

下面附上日历视图,我需要把图片放在标题栏正下方的日历顶部。日历需要在图片下方看到。

在这里输入图像说明

创buildTKCalendarMonthViewController的子类并覆盖loadView:

- (void)loadView { [super loadView]; // Get the frame of the calendar view CGRect frame = self.monthView.frame; // Shift it down to make room for the image view frame.origin.y += 50; // Add your image view, eg : UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0, 0.0, frame.size.width, 50.0)]; [self.view addSubview:imageView]; } 

如果您使用TKCalendarMonthTableViewController(包括日历视图下方的表格),则还需要调整表格的大小。 查看TKCalendarMonthTableViewController的loadView,看看它是如何设置的。