| 1234567891011121314151617181920212223242526272829303132 |
- //
- // PermissionGuidePopupView.h
- // OneCable
- //
- // Created by ncomz on 2017. 7. 3..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "CustomAlertView.h"
- @interface PermissionGuidePopupView : UIViewController
- @property (weak, nonatomic) IBOutlet UILabel *lblDescNecessary;
- @property (weak, nonatomic) IBOutlet UILabel *lblDescOptions;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constLblDescOptionsHeight;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constLblDescNecessaryHeight;
- @property (weak, nonatomic) IBOutlet CustomImageView *imgTitleBar;
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
- @property (strong, nonatomic) id data ;
- - (id)initFromNib;
- - (void)presentWithData:(id)data owner:(UIViewController *)owner shown:(void (^)())popupShowComplition dismissed:(void (^)(NSInteger result, id data))popupDismissComplition ;
- - (void)dismissWithResult:(NSInteger)result data:(id)data ;
- @end
|