17 lines
412 B
Objective-C
Executable File
17 lines
412 B
Objective-C
Executable File
//
|
|
// JianBianButton.m
|
|
// MoHuanXingYu
|
|
//
|
|
// Created by 翟三美 on 2020/6/14.
|
|
// Copyright © 2020 MoHuanXingYu. All rights reserved.
|
|
//
|
|
|
|
#import "JianBianButton.h"
|
|
|
|
@implementation JianBianButton
|
|
|
|
- (void)setJianBianWithCGSize:(CGSize)size{
|
|
[self gradientButtonWithSize:size colorArray:@[mHexRGB(0xFF5057),HEXCOLOR(0xFF5057)] percentageArray:@[@(0),@(1)] gradientType:GradientFromLeftToRight];
|
|
}
|
|
@end
|