• Stars
    star
    255
  • Rank 159,729 (Top 4 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created over 8 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

If you find bug , please comtact me . email [email protected] qq:1634104309