We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be possible to optimize the day calendar view to work on the iPad's larger screen size?
Thanks!
The text was updated successfully, but these errors were encountered:
For iPad weekday selection was not resizing , so make these changes as replace line and comment the necessary one:
CGFloat wid = CGRectGetWidth([UIScreen mainScreen].bounds); //wid -= 8; //comment it NSInteger per = wid - (DAY_LABEL_WIDTH *7);
_monthYearLabel = [[UILabel alloc] initWithFrame:CGRectInset(CGRectMake(0, TOP_BAR_HEIGHT - 24 - 6, CGRectGetWidth([UIScreen mainScreen].bounds), 24), 40, 0)]; //_monthYearLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth; //comment it
In daysBackgroundView method _daysBackgroundView = [[UIView alloc] initWithFrame:CGRectMake(0, 0,CGRectGetWidth([UIScreen mainScreen].bounds), TOP_BAR_HEIGHT)];
_daysBackgroundView = [[UIView alloc] initWithFrame:CGRectMake(0, 0,CGRectGetWidth([UIScreen mainScreen].bounds), TOP_BAR_HEIGHT)];
In daysScrollView method _daysScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth([UIScreen mainScreen].bounds), CGRectGetMinY(self.monthYearLabel.frame))];
_daysScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth([UIScreen mainScreen].bounds), CGRectGetMinY(self.monthYearLabel.frame))];
Sorry, something went wrong.
Hmm... It seems that the numbers don't change their location...
No branches or pull requests
Would it be possible to optimize the day calendar view to work on the iPad's larger screen size?
Thanks!
The text was updated successfully, but these errors were encountered: