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
Please update the binding for Xamarin iOS nuget.
- (NSInteger)numberOfRowsInMonth:(NSDate *)month { if (!month) return 0; if (self.showsPlaceholders) return 6; NSDate *firstDayOfMonth = [self beginingOfMonthOfDate:month]; NSInteger weekdayOfFirstDay = [self weekdayOfDate:firstDayOfMonth]; NSInteger numberOfDaysInMonth = [self numberOfDatesInMonthOfDate:month]; NSInteger numberOfPlaceholdersForPrev = ((weekdayOfFirstDay - self.firstWeekday) + 7) % 7; NSInteger headDayCount = numberOfDaysInMonth + numberOfPlaceholdersForPrev; NSInteger numberOfRows = (headDayCount/7) + (headDayCount%7>0); return numberOfRows; }
The text was updated successfully, but these errors were encountered:
Please make a PR and update the lib to the latest
Sorry, something went wrong.
I updated the library though nuget. I am unable to bind the libraries myself. Any help is appreciated
No branches or pull requests
Please update the binding for Xamarin iOS nuget.
The text was updated successfully, but these errors were encountered: