I have a custom calendar view in my self.view and a UITableView on the bottom. When the calendar days exceed XXX amount, it covers the UITableView. Is there a way I can attach the UITableView to the bottom of the custom calendar view?
This is the code generating my Custom Calendar View in my viewDidLoad method.
calendar = [[VRGCalendarView alloc] init];
calendar.delegate=self;
[self.view bringSubviewToFront:calendar];
[self.view addSubview:calendar];