Releases: mutualmobile/MMDrawerController
Releases · mutualmobile/MMDrawerController
0.3.0
0.3.0 (Monday, July 22nd, 2013)
- NEW Added a block to determine if a gesture should be recognized, giving the implementer a chance to define where a gesture should be recognized within their views. Please consult the README for additional details. (#25). (Kevin Harwood)
- FIXED an issue (#56) where the bezel gesture would be detected even if there was no drawer controller on that side. (Kevin Harwood)
- FIXED an issue (#50) where a subclass could get stuck in an infinite loop in the
init
method. (Tuan Cao)
0.2.1
0.2.0
0.2.0 (Tuesday, June 4th, 2013)
- NEW Added support for using the panning velocity to complete the animation. It now looks much better (#18). (Kevin Harwood)
- NEW Added a new callback block to get notified when a gesture animation has completed (#20). (Kevin Harwood)
- FIXED an issue(#23) where the drawer could bounce, even if a drawer was open. (Kevin Harwood)
- FIXED an issue(#38) the designator initializer for
UIViewController
was not properly setting default values. (poteryaysya) - FIXED an issue(#24) where some documentation was incorrect. (Kevin Harwood)
0.1.0
0.1.0 (Wednesday, May 15th, 2013)
- NEW
MMDrawerController
now properly supports full view controller containment. The drawer view controllers will properly receive their view appearance methods at the correct time now, including every time they are about to become visible. Please note thatmm_drawerWillApear
has now been deprecated. More notes below. (Kevin Harwood, Lars Anderson) - FIXED an issue(#9) where the drawer could bounce, even if no drawer was set. (Kevin Harwood)
- FIXED an issue(#14) where open center interaction state could be incorrectly applied if a new view controller is pushed onto a center view controller when a drawer is open. (Kevin Harwood)
- DEPRECATED Support for the
mm_drawerWillAppear
method in theUIViewController+MMDrawerController
category is no longer available. Please move any logic contained within this method toviewWillAppear:
in your drawer view controllers. This method will no longer be called going forward.