/FloatView

浮动图片,类似京东或者美团外卖的偷红包,其实最相似的是苹果的AssistiveTouch(小圆点),使用更加简单!更加轻量!

Primary LanguageObjective-CMIT LicenseMIT

FloatView

浮动图片

image

使用方式


创建方式一:
FloatView* floatView = [[FloatView alloc] initWithImage:[UIImage imageNamed:@"FloatBonus"]];
创建方式二:
FloatView* floatView = [FloatView new];
[floatView setImageWithName:@"FloatBonus"];

floatView.stayAlpha = 0.3;
floatView.stayMode = STAYMODE_RIGHT;
[floatView setTapActionWithBlock:^{
    NSLog(@"跳转到邀请好友界面");
}];
[self.view addSubview:floatView];

你觉得对你有所帮助的话,请献上宝贵的Star!!! 不胜感激!!!