-
Notifications
You must be signed in to change notification settings - Fork 814
New issue
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
Scroll based on each months, not segments #99
Comments
hmm. Yea, I didnt make the code scroll to page. In the mean time though, Range selection has been added to master branch. |
I'll go check your paging thing now. |
Hi @patchthecode , wow thanks.. I tried to update the pod to 4.1.4 (latest version) but didn't get any |
Ah, i havent releast it yet. I wanted someone to test it first before releasing. |
Okay. Mmm, can you please provide more information on how to use |
SelectedPosition tells you the selected position of a dateCell. So you can do something like this. if cellState.SelectedPosition() == .Left {
//Let the view have a left selected view
} else if cellState.SelectedPosition() == .Middle {
// Let the view have a middle selected view
} cellState.SelectedPosition() == .Right {
// Let the view have a right selected view {
} cellState.SelectedPosition() == .Full {{
// Let the view have a full selected view
} else {
//let the view have no selected view
} |
Feature complete. Now testing it. |
Hi, how do I make the scrolling based on each months, not segments?
From the image above, the May 2017 is getting cut since it's on iPhone 5S, but on iPhone 6 it's working fine. I adjust the itemSize so it can fit iPhone 6, and it scroll on every 2 months. I would like it to scroll on 1 month. Is it possible? Thanks.
The text was updated successfully, but these errors were encountered: