UI Problem with kal calendar for ipad?

I have a problem with Kal Calendar for iPad. There is empty space on the iPad, but on the iPhone this is normal. How can I make it fit in a frame on an iPad?

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) { [kal.view setFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)]; } else if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { [kal.view setFrame:CGRectMake(0, 0,768 ,1004)]; } 

I tried using the code above, but for me it did not work!

enter image description here

+7
source share
1 answer

in KalGridView.m you will find this.

 const CGSize kTileSize = { 46.f, 44.f }; 

I would change the code to a property where you can dynamically set the frame to the idiom and / or orientation.

in KalGridView.m

  const CGSize kTileSize = { 109.0f, 109.0f }; 

and in KalView.m

 - (void)addSubviewsToHeaderView:(UIView *)headerView … for (CGFloat xOffset = 0.f; xOffset < headerView.width; xOffset += 109.f, i = (i+1)%7) { CGRect weekdayFrame = CGRectMake(xOffset, 30.f, 109.f, kHeaderHeight - 29.f); UILabel *weekdayLabel = [[UILabel alloc] initWithFrame:weekdayFrame]; weekdayLabel.backgroundColor = [UIColor clearColor]; weekdayLabel.font = [UIFont boldSystemFontOfSize:10.f]; weekdayLabel.textAlignment = UITextAlignmentCenter; weekdayLabel.textColor = [UIColor colorWithRed:0.3f green:0.3f blue:0.3f alpha:1.f]; weekdayLabel.shadowColor = [UIColor whiteColor]; weekdayLabel.shadowOffset = CGSizeMake(0.f, 1.f); weekdayLabel.text = [weekdayNames objectAtIndex:i]; [headerView addSubview:weekdayLabel]; [weekdayLabel release]; } } 

leads to:

screenshot

+13
source

All Articles