| 123456789101112131415161718192021222324252627282930 |
- //
- // MorePopOverViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 3. 6..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JDViewController.h"
- #import "MoreButtonDelegate.h"
- @class WYPopoverController;
- @interface MorePopOverViewController : JDViewController<MoreButtonDelegate>
- @property (assign,nonatomic) id<MoreButtonDelegate> moreDelegate;
- @property (weak, nonatomic) IBOutlet UIStackView *viewPopup;
- @property (weak, nonatomic) WYPopoverController *poc;
- - (void)popButtonSet:(NSMutableArray *)btnArray;
- //-(void)popButtonSet:(NaviMenu)morePopMode;
- //- (void)popButtonSet:(MorePopupBtnType)firstType secondType:(MorePopupBtnType)secondType thirdType:(MorePopupBtnType)thirdType fourthType:(MorePopupBtnType)fourthType;
- @end
|