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
Hey, first of all, thanks for this component, it have been really useful.
I'm having this issue where after adding events, the weekview scrolls to the day with the oldest event.
It's there a way I can scroll back to the current day, in a programmatically way?
I tried calling:
[self.weekView.weekFlowLayout scrollCollectionViewToClosetSectionToTime:[NSDate date] animated:NO]; [self.decoratedWeekView.weekFlowLayout scrollCollectionViewToClosetSectionToTime:[NSDate date] animated:NO];
but its not working for me.
Thanks
The text was updated successfully, but these errors were encountered:
This should work, when are you calling it? are you doing it in the main thread?
There are all these methods
- (void)scrollCollectionViewToClosetSectionToCurrentTimeAnimated:(BOOL)animated; - (void)scrollCollectionViewToClosetSectionToTime:(NSDate*)time animated:(BOOL)animated; - (void)scrollCollectionViewToCurrentTime:(BOOL)animated;
You can use the last one if you want it to scroll to today
Sorry, something went wrong.
No branches or pull requests
Hey, first of all, thanks for this component, it have been really useful.
I'm having this issue where after adding events, the weekview scrolls to the day with the oldest event.
It's there a way I can scroll back to the current day, in a programmatically way?
I tried calling:
but its not working for me.
Thanks
The text was updated successfully, but these errors were encountered: