MorePopOverViewController.h 792 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MorePopOverViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 3. 6..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JDViewController.h"
  10. #import "MoreButtonDelegate.h"
  11. @class WYPopoverController;
  12. @interface MorePopOverViewController : JDViewController<MoreButtonDelegate>
  13. @property (assign,nonatomic) id<MoreButtonDelegate> moreDelegate;
  14. @property (weak, nonatomic) IBOutlet UIStackView *viewPopup;
  15. @property (weak, nonatomic) WYPopoverController *poc;
  16. - (void)popButtonSet:(NSMutableArray *)btnArray;
  17. //-(void)popButtonSet:(NaviMenu)morePopMode;
  18. //- (void)popButtonSet:(MorePopupBtnType)firstType secondType:(MorePopupBtnType)secondType thirdType:(MorePopupBtnType)thirdType fourthType:(MorePopupBtnType)fourthType;
  19. @end