AlertView动画
生活随笔
收集整理的這篇文章主要介紹了
AlertView动画
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
AlertView動(dòng)畫
?
效果
?
源碼
https://github.com/YouXianMing/Animations
// // AbstractAlertView.h // Animations // // Created by YouXianMing on 16/1/2. // Copyright ? 2016年 YouXianMing. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> @class AbstractAlertView;@protocol AbstractAlertViewDelegate <NSObject>/*** The AlertView's event.** @param alertView The AlertViewProtocol object.* @param event Event data.* @param index Event index.*/ - (void)alertView:(AbstractAlertView *)alertView data:(id)data atIndex:(NSInteger)index;@end@interface AbstractAlertView : UIView/*** The AlertView event delegate.*/ @property (nonatomic, weak) id <AbstractAlertViewDelegate> delegate;/*** The title, default is nil.*/ @property (nonatomic, strong) NSString *title;/*** The subtitle, default is nil.*/ @property (nonatomic, strong) NSString *subTitle;/*** The message, default is nil.*/ @property (nonatomic, strong) NSString *message;/*** Button's title array, default is nil.*/ @property (nonatomic, strong) NSArray <NSString *> *buttonsTitle;/*** The contentView.*/ @property (nonatomic, weak) UIView *contentView;/*** Auto hiden or not, default is NO.*/ @property (nonatomic) BOOL autoHiden;/*** If The autoHiden is YES, you should set the delay hiden duration, default is 2.0.*/ @property (nonatomic) NSTimeInterval delayAutoHidenDuration;/*** Show the AlertView.*/ - (void)show;/*** Hide the AlertView.*/ - (void)hide;/*** Store View with key.** @param view View.* @param key Key.*/ - (void)setView:(UIView *)view ForKey:(NSString *)key;/*** Get View with key.** @param key Key.** @return View.*/ - (UIView *)viewWithKey:(NSString *)key;@end // // AbstractAlertView.m // Animations // // Created by YouXianMing on 16/1/2. // Copyright ? 2016年 YouXianMing. All rights reserved. // #import "AbstractAlertView.h"@interface AbstractAlertView ()@property (nonatomic, strong) NSMapTable *mapTable;@end@implementation AbstractAlertView- (instancetype)init {if (self = [super init]) {self.delayAutoHidenDuration = 2.f;self.autoHiden = NO;self.mapTable = [NSMapTable strongToWeakObjectsMapTable];}return self; }- (void)show {[NSException raise:@"AlertViewProtocol"format:@"Cannot use show method from subclass."]; }- (void)hide {[NSException raise:@"AlertViewProtocol"format:@"Cannot use hide method from subclass."]; }- (void)setView:(UIView *)view ForKey:(NSString *)key {[self.mapTable setObject:view forKey:key]; }- (UIView *)viewWithKey:(NSString *)key {return [self.mapTable objectForKey:key]; }@end?
細(xì)節(jié)
動(dòng)畫效果是基于一個(gè)抽象的基類實(shí)現(xiàn)的。
?
轉(zhuǎn)載于:https://www.cnblogs.com/YouXianMing/p/5094308.html
總結(jié)
以上是生活随笔為你收集整理的AlertView动画的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 【Beta阶段】发布说明
- 下一篇: OC中数组排序的3种方法