thundertrick / Bzier-Animation-FloatingWindow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FloatingWindow


悬浮窗圆形转场动画框架,首先是实现了悬浮窗,然后再添加了圆形缩小的入场动画和圆形扩大的出场动画,可以给所有的controller添加这个效果

Look


![image](https://github.com/hzQuan/FloatingWindow/blob/master/悬浮窗4.gif )

How to use it


1.在appdelegate中添加

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

self.floatWindow = [[FloatingWindow alloc] initWithFrame:CGRectMake(100, 100, 76, 76) imageName:@"av_call"];

[self.floatWindow makeKeyAndVisible];

self.floatWindow.hidden = YES;

return YES; }

2.你需要开启悬浮窗的viewcontroller中添加方法:

实现点击小圆点的委托 deleage.floatWindow.floatDelegate = weakSelf;
开启悬浮窗 [deleage.floatWindow startWithTime:30 presentview:self.view inRect:CGRectMake(100, 100, 100, 100)];

MORE


If you can't choice simulator,please change your development

Welcome fork and pull

thanks everyone's star'

If you find bug , please comtact me . email 1634104309@qq.com qq:1634104309


android 技术交流群:2308505

iOS 技术交流群:249735019

About

License:MIT License


Languages

Language:Objective-C 100.0%