FWAlertAnimationType

NS_ENUM(NSInteger, FWAlertAnimationType) {
    FWAlertAnimationTypeDefault = 0, // 默认动画,如果是FWAlertControllerStyleActionSheet样式,默认动画等效于FWAlertAnimationTypeFromBottom,如果是FWAlertControllerStyleAlert样式,默认动画等效于FWAlertAnimationTypeShrink
    FWAlertAnimationTypeFromBottom,  // 从底部弹出
    FWAlertAnimationTypeFromTop,     // 从顶部弹出
    FWAlertAnimationTypeFromRight,   // 从右边弹出
    FWAlertAnimationTypeFromLeft,    // 从左边弹出
    
    FWAlertAnimationTypeShrink,      // 收缩动画
    FWAlertAnimationTypeExpand,      // 发散动画
    FWAlertAnimationTypeFade,        // 渐变动画

    FWAlertAnimationTypeNone,        // 无动画
}

Undocumented