BKShiftingView.h 489 B

12345678910111213141516171819202122
  1. //
  2. // BKShiftingView.h
  3. // BKPasscodeViewDemo
  4. //
  5. // Created by Byungkook Jang on 2014. 10. 11..
  6. // Copyright (c) 2014년 Byungkook Jang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSUInteger, BKShiftingDirection) {
  10. BKShiftingDirectionForward,
  11. BKShiftingDirectionBackward,
  12. };
  13. @interface BKShiftingView : UIView
  14. @property (nonatomic, strong) UIView *currentView;
  15. - (void)showView:(UIView *)view withDirection:(BKShiftingDirection)direction;
  16. @end