// // BSAlertView.h // Unionpay // // Created by Qing Xiubin on 13-8-7. // Copyright (c) 2013年 成都中信联通科技有限公司. All rights reserved. // typedef NS_ENUM(NSInteger, AlertAnimation){ kAlertAnimationTop, kAlertAnimationLeft, kAlertAnimationRight, kAlertAnimationBottom, kAlertAnimationFade, kAlertAnimationPop, kAlertAnimationNone, }; @interface BSAlertView : UIView @property (nonatomic, strong) IBOutlet UIImageView *bgImageView; @property (nonatomic, assign) BOOL gesture; @property (nonatomic, assign) UIStatusBarStyle statusBarStyle; @property (nonatomic, strong) UIColor *bgColor; @property (assign, nonatomic) BOOL allowAbserveKeyboard; - (void)show; - (void)showWithAnimation:(AlertAnimation)animation; - (void)dismiss; - (void)dismissWithAnimation:(AlertAnimation)animation; //子类可以重写下列方法来控制界面显示 - (BOOL)willShowKeyboard; - (CGFloat)marginToBottom; - (CGPoint)centerWithAnimation:(AlertAnimation)animation; @end