79 lines
2.4 KiB
Objective-C
79 lines
2.4 KiB
Objective-C
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
#import "CircleButton.h"
|
|
|
|
@implementation CircleButton
|
|
|
|
- (instancetype)initWithImage:(UIImage *)image borderColor:(UIColor *)borderColor
|
|
{
|
|
self = [[super class] buttonWithType:UIButtonTypeCustom];
|
|
|
|
self.adjustsImageWhenDisabled = NO;
|
|
self.adjustsImageWhenHighlighted = NO;
|
|
|
|
self.layer.borderWidth = 1.0;
|
|
self.layer.borderColor = borderColor.CGColor;
|
|
|
|
self.defaultBackgroundColor = [UIColor whiteColor];
|
|
self.highlightTintColor = [UIColor whiteColor];
|
|
|
|
self.highlightBackgroundColor = borderColor;
|
|
self.defaultTintColor = borderColor;
|
|
self.tintColor = borderColor;
|
|
|
|
[self setImage:[image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate] forState:UIControlStateNormal];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)setDefaultBackgroundColor:(UIColor *)defaultBackgroundColor
|
|
{
|
|
_defaultBackgroundColor = defaultBackgroundColor;
|
|
self.backgroundColor = defaultBackgroundColor;
|
|
}
|
|
|
|
- (void)layoutSubviews
|
|
{
|
|
[super layoutSubviews];
|
|
|
|
self.layer.cornerRadius = CGRectGetWidth(self.bounds) / 2.0;
|
|
}
|
|
|
|
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
|
|
{
|
|
[super touchesBegan:touches withEvent:event];
|
|
[self animateBackgroundColor:self.highlightBackgroundColor tintColor:self.highlightTintColor];
|
|
}
|
|
|
|
- (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
|
|
{
|
|
[super touchesEnded:touches withEvent:event];
|
|
[self animateBackgroundColor:self.defaultBackgroundColor tintColor:self.defaultTintColor];
|
|
}
|
|
|
|
- (void)touchesCancelled:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
|
|
{
|
|
[super touchesCancelled:touches withEvent:event];
|
|
[self animateBackgroundColor:self.defaultBackgroundColor tintColor:self.defaultTintColor];
|
|
}
|
|
|
|
- (void)animateBackgroundColor:(UIColor *)color tintColor:(UIColor *)tintColor
|
|
{
|
|
[UIView animateWithDuration:0.25
|
|
delay:0.0
|
|
options:UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationOptionAllowUserInteraction
|
|
animations:^{
|
|
self.backgroundColor = color;
|
|
self.tintColor = tintColor;
|
|
}
|
|
completion:nil];
|
|
}
|
|
|
|
@end
|