iOS可复用控件之悬浮按钮

这篇博客介绍了如何在iOS应用中实现一个类似AssistiveTouch的悬浮按钮,该按钮点击后会弹出子按钮,不同于系统默认的菜单展示方式。作者提供了GitHub链接供读者参考。
摘要由CSDN通过智能技术生成

GitHub地址:https://github.com/runThor/HTAssistiveTouchButton

类似于iOS系统的AssistiveTouch,不过点击效果是弹出子按钮,而不是系统的菜单方式。

效果:





实现:

//  HTAssistiveTouchButton.h

#import <UIKit/UIKit.h>

@interface HTAssistiveTouchButton : UIButton

@property (nonatomic, strong) NSMutableArray *childButtons;  // 可弹出的子按钮

@end


//  HTAssistiveTouchButton.m

#import "HTAssistiveTouchButton.h"

#define kScreenWidth    [UIScreen mainScreen].bounds.size.width
#define kScreenHeight   [UIScreen mainScreen].bounds.size.height

@interface HTAssistiveTouchButton ()

@property (nonatomic, assign) BOOL isMoving;  // button是否处于移动状态
@property (nonatomic, assign) CGPoint beginPosition;  // button触摸开始时的触摸点坐标
@property (nonatomic, assign) float offsetX;  // x坐标偏移量
@property (nonatomic, assign) float offsetY;  // y坐标偏移量

@end

@implementation HTAssistiveTouchButton

- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        self.childButtons = [[NSMutableArray alloc] init];
        
        [self addTarget:self action:@selector(buttonClicked) forControlEvents:UIControlEventTouchUpInside];
        [self addTarget:self action:@selector(buttonDrag) forControlEvents:UIControlEventTouchDragInside];
    }
    
    return self;
}

// 点击按钮
- (void)buttonClicked {
    if (3 != self.childButtons.count) {
        return;
    }
    
    if (!self.isMoving) {
        if ([self.childButtons[0] isHidden]) {
            // 弹出子按钮
            for (UIButton *btn in self.childButtons) {
                [btn setCenter:self.center];
                btn.hidden = NO;
            }
            
            [UIView animateWithDuration:0.3
                             
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值