// // BaseAlertCardViewController.h // patrol // // Created by Javen on 2017/3/3. // Copyright © 2017年 上海勾芒科技有限公司. All rights reserved. // #import static NSInteger const shadowTag = 1111; @interface BaseAlertCardViewController : UIViewController @property (weak, nonatomic) UIViewController *superVC; /** 弹出框 */ @property (weak, nonatomic) IBOutlet UIView *alertCard; - (void)show; - (void)hide; - (IBAction)actionHide:(id)sender; - (void)actionTap:(UITapGestureRecognizer *)tap; @end