MosheBerman / MBCalendarKit

An open source calendar framework for iOS, with support for customization, IBDesignable, Autolayout, and more.
Other
560 stars 120 forks source link

Allow calendar traversal without impacting selected date. #61

Open MosheBerman opened 9 years ago

MosheBerman commented 9 years ago

Per, @snadahalli, in my words:

If you tap on one of the arrows on the calendar, it shows another month, and changes the selected date to the first of the newly visible month.

This behavior should remain enabled by default, but an optional alternative is to allow users of the library to set a flag which would allow users of the calendar to traverse the months without changing the date.

MosheBerman commented 9 years ago

This feature request is essentially asking for the behavioral change implemented in iOS 7.

tikamchandrakar18 commented 9 years ago

Same issue I am also getting, Did not understand your solution.

MosheBerman commented 9 years ago

There's no solution yet. It's a feature request. ;-)

MosheBerman commented 7 years ago

Related #120

MosheBerman commented 7 years ago

Related: #97

MosheBerman commented 7 years ago

Design Discussion

Behaviors

User Interaction

Defining the date property as "selected date" and the new date used for display of a different time range as "visible date," here's a chart of user interaction to change the two values:

  Legacy Behavior New Behavior
Change Visible Date Single Tap Tap Arrows or Scrub
Change Selected Date Single Tap Tap Cell

There are three options for the new behavior:

  1. Arrows in the header select change visible date, tapping cells change the selected date.
  2. Tapping on either the arrows or the cells change the visible date, and double tapping a cell changes selected date.
  3. Tapping the arrows or scrubbing changes the visible date, and tapping a cell changes the selected date.

The third is a more complete description of the third, and that's the behavior modeled in the chart. I'm going to give that a go.

Other Concerns

Some random thoughts:

MosheBerman commented 7 years ago

Calendar Traversal Design, Part 2

Thinking about this some more, it looks like we also need to worry about minimum/maximum dates, and delegate callbacks.

Visible or Selected?

If the view model's current "date" property is treated as "visibleDate" and the new property is "selectedDate" we need to decide if we duplicate the delegate methods for "visibleDate" and "selectedDate", and if not, which one fires when?

Missing Features

I think for now it might make sense to treat the "date" as "selectedDate" and add a "visibleDate" property, so as to keep the delegate and minimum/maximum dates the same. This means that there's no way to tell when the user changes the visible date, and no way to clamp the visible months independently of clamping the selectable date range.

I think I need to think on this a little more.