WeChatFloat icon indicating copy to clipboard operation
WeChatFloat copied to clipboard

仿微信浮窗功能

Results 5 WeChatFloat issues
Sort by recently updated
recently updated
newest added

一般app都是 一个tabbar 多个 nav,所以在不同nav下就会有问题。

如果切换tabbar,自定义转场动画就消失了

} else if (self.edgePan.state == UIGestureRecognizerStatePossible) { ///这个位置的代码不应该在动画结束后销毁定时器,否则会在动画过程中继续回调定时器,多次```UIGestureRecognizerStatePossible```状态 [self.floatArea removeFromSuperview]; self.floatArea = nil; [self.link invalidate]; self.link = nil; [UIView animateWithDuration:0.5 animations:^{ self.floatArea.frame = CGRectMake(SCREEN_WIDTH, SCREEN_HEIGHT, kFloatAreaR, kFloatAreaR); } completion:^(BOOL finished)...

你好,我在项目使用中遇到两个问题: 1、浮窗关闭,但是浮窗对应的VC没法释放。 2、在浮窗没有关闭的时候再添加新的浮窗,小圆点会过几秒自动消失,对应VC也是没有释放的。 目前我自己也在排查,先提个issues~