2019-12-04 13:29:26 +08:00
|
|
|
/*
|
|
|
|
* Copyright [2019] [Doric.Pub]
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
//
|
|
|
|
// DoricTextNode.m
|
|
|
|
// Doric
|
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/7/31.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricTextNode.h"
|
|
|
|
#import "DoricUtil.h"
|
|
|
|
#import "DoricGroupNode.h"
|
|
|
|
#import "Doric.h"
|
2022-03-02 17:09:26 +08:00
|
|
|
#import <CoreText/CoreText.h>
|
2019-12-04 13:29:26 +08:00
|
|
|
|
2020-03-13 16:24:00 +08:00
|
|
|
@interface DoricTextView : UILabel
|
2021-09-08 20:19:41 +08:00
|
|
|
@property(nonatomic, assign) DoricGravity gravity;
|
2020-03-13 16:24:00 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation DoricTextView
|
|
|
|
- (void)drawTextInRect:(CGRect)rect {
|
2021-09-08 20:19:41 +08:00
|
|
|
rect = UIEdgeInsetsInsetRect(
|
2020-04-03 16:36:43 +08:00
|
|
|
rect,
|
|
|
|
UIEdgeInsetsMake(
|
|
|
|
self.doricLayout.paddingTop,
|
|
|
|
self.doricLayout.paddingLeft,
|
|
|
|
self.doricLayout.paddingBottom,
|
2021-09-08 20:19:41 +08:00
|
|
|
self.doricLayout.paddingRight));
|
|
|
|
if ((self.gravity & DoricGravityTop) == DoricGravityTop) {
|
|
|
|
rect.origin.y = self.doricLayout.paddingTop;
|
2021-09-09 11:58:37 +08:00
|
|
|
rect.size.height = self.doricLayout.contentHeight;
|
2021-09-08 20:19:41 +08:00
|
|
|
} else if ((self.gravity & DoricGravityBottom) == DoricGravityBottom) {
|
2021-09-09 11:58:37 +08:00
|
|
|
rect.origin.y = self.height - self.doricLayout.contentHeight - self.doricLayout.paddingBottom;
|
|
|
|
rect.size.height = self.doricLayout.contentHeight;
|
2021-09-08 20:19:41 +08:00
|
|
|
}
|
2021-09-09 11:58:37 +08:00
|
|
|
rect.size.width = MAX(0.01f, rect.size.width);
|
2021-09-08 20:19:41 +08:00
|
|
|
[super drawTextInRect:rect];
|
2020-03-23 16:23:41 +08:00
|
|
|
}
|
2021-09-09 11:58:37 +08:00
|
|
|
|
|
|
|
- (CGSize)sizeThatFits:(CGSize)size {
|
|
|
|
return [super sizeThatFits:size];
|
|
|
|
}
|
2020-03-13 16:24:00 +08:00
|
|
|
@end
|
|
|
|
|
2020-03-24 11:06:30 +08:00
|
|
|
@interface DoricTextNode ()
|
|
|
|
@property(nonatomic, strong) NSMutableParagraphStyle *paragraphStyle;
|
2020-12-10 09:50:09 +08:00
|
|
|
@property(nonatomic, copy) NSNumber *underline;
|
|
|
|
@property(nonatomic, copy) NSNumber *strikethrough;
|
2021-07-19 19:49:31 +08:00
|
|
|
@property(nonatomic, strong) NSDictionary *textGradientProps;
|
|
|
|
@property(nonatomic, assign) CGSize textGradientSize;
|
2020-03-24 11:06:30 +08:00
|
|
|
@end
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
@implementation DoricTextNode
|
|
|
|
- (UILabel *)build {
|
2020-03-25 14:07:24 +08:00
|
|
|
return [[[DoricTextView alloc] init] also:^(DoricTextView *it) {
|
2020-04-27 18:46:39 +08:00
|
|
|
[self ensureParagraphStyle];
|
2019-12-04 13:29:26 +08:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)blendView:(UILabel *)view forPropName:(NSString *)name propValue:(id)prop {
|
|
|
|
if ([name isEqualToString:@"text"]) {
|
2020-04-13 17:41:17 +08:00
|
|
|
view.text = prop;
|
2020-03-24 11:06:30 +08:00
|
|
|
if (self.paragraphStyle) {
|
2020-04-13 17:41:17 +08:00
|
|
|
[self reloadParagraphStyle];
|
2020-03-24 11:06:30 +08:00
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
} else if ([name isEqualToString:@"textSize"]) {
|
2020-01-14 19:50:32 +08:00
|
|
|
UIFont *font = view.font;
|
|
|
|
if (font) {
|
|
|
|
view.font = [view.font fontWithSize:[(NSNumber *) prop floatValue]];
|
|
|
|
} else {
|
|
|
|
view.font = [UIFont systemFontOfSize:[(NSNumber *) prop floatValue]];
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
} else if ([name isEqualToString:@"textColor"]) {
|
2021-07-19 19:49:31 +08:00
|
|
|
if ([prop isKindOfClass:[NSNumber class]]) {
|
|
|
|
view.textColor = DoricColor(prop);
|
|
|
|
self.textGradientProps = nil;
|
|
|
|
self.textGradientSize = CGSizeZero;
|
|
|
|
} else if ([prop isKindOfClass:[NSDictionary class]]) {
|
|
|
|
self.textGradientProps = prop;
|
|
|
|
self.textGradientSize = CGSizeZero;
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
} else if ([name isEqualToString:@"textAlignment"]) {
|
|
|
|
DoricGravity gravity = (DoricGravity) [(NSNumber *) prop integerValue];
|
|
|
|
NSTextAlignment alignment = NSTextAlignmentCenter;
|
2020-03-27 10:07:53 +08:00
|
|
|
if ((gravity & DoricGravityLeft) == DoricGravityLeft) {
|
2019-12-04 13:29:26 +08:00
|
|
|
alignment = NSTextAlignmentLeft;
|
2020-03-27 10:07:53 +08:00
|
|
|
} else if ((gravity & DoricGravityRight) == DoricGravityRight) {
|
2019-12-04 13:29:26 +08:00
|
|
|
alignment = NSTextAlignmentRight;
|
|
|
|
}
|
2020-03-24 11:06:30 +08:00
|
|
|
if (self.paragraphStyle) {
|
|
|
|
self.paragraphStyle.alignment = alignment;
|
2020-04-27 18:46:39 +08:00
|
|
|
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:view.text ?: @""];
|
2020-03-24 16:23:51 +08:00
|
|
|
[attributedString addAttribute:NSParagraphStyleAttributeName value:self.paragraphStyle range:NSMakeRange(0, [attributedString length])];
|
|
|
|
view.attributedText = attributedString;
|
2020-03-24 11:06:30 +08:00
|
|
|
} else {
|
|
|
|
view.textAlignment = alignment;
|
|
|
|
}
|
2021-09-08 20:19:41 +08:00
|
|
|
((DoricTextView *) view).gravity = gravity;
|
2019-12-10 14:37:04 +08:00
|
|
|
} else if ([name isEqualToString:@"maxLines"]) {
|
|
|
|
view.numberOfLines = [prop integerValue];
|
2020-01-14 19:50:32 +08:00
|
|
|
} else if ([name isEqualToString:@"fontStyle"]) {
|
|
|
|
UIFont *font = view.font;
|
|
|
|
if (!font) {
|
|
|
|
font = [UIFont systemFontOfSize:[UIFont systemFontSize]];
|
|
|
|
}
|
|
|
|
UIFontDescriptor *fontDescriptor = nil;
|
|
|
|
if ([@"bold" isEqualToString:prop]) {
|
|
|
|
fontDescriptor = [font.fontDescriptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitBold];
|
|
|
|
} else if ([@"italic" isEqualToString:prop]) {
|
|
|
|
fontDescriptor = [font.fontDescriptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitItalic];
|
|
|
|
} else if ([@"bold_italic" isEqualToString:prop]) {
|
|
|
|
fontDescriptor = [font.fontDescriptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitBold | UIFontDescriptorTraitItalic];
|
|
|
|
}
|
|
|
|
if (fontDescriptor) {
|
|
|
|
font = [UIFont fontWithDescriptor:fontDescriptor size:0];
|
2021-07-27 17:47:46 +08:00
|
|
|
} else {
|
2021-08-12 16:00:38 +08:00
|
|
|
font = [UIFont fontWithName:font.fontName size:font.pointSize];
|
2020-01-14 19:50:32 +08:00
|
|
|
}
|
|
|
|
view.font = font;
|
2020-03-23 16:23:41 +08:00
|
|
|
} else if ([name isEqualToString:@"maxWidth"]) {
|
2020-04-03 17:28:55 +08:00
|
|
|
view.doricLayout.maxWidth = [prop floatValue];
|
2020-03-23 16:23:41 +08:00
|
|
|
} else if ([name isEqualToString:@"maxHeight"]) {
|
2020-04-03 17:28:55 +08:00
|
|
|
view.doricLayout.maxHeight = [prop floatValue];
|
2020-03-13 15:00:42 +08:00
|
|
|
} else if ([name isEqualToString:@"font"]) {
|
2022-03-02 17:09:26 +08:00
|
|
|
if ([prop isKindOfClass:[NSString class]]) {
|
|
|
|
NSString *iconfont = prop;
|
|
|
|
UIFont *font = [UIFont fontWithName:[iconfont stringByReplacingOccurrencesOfString:@".ttf" withString:@""]
|
|
|
|
size:view.font.pointSize];
|
|
|
|
view.font = font;
|
|
|
|
} else if ([prop isKindOfClass:[NSDictionary class]]) {
|
|
|
|
DoricAsyncResult <NSData *> *asyncResult = [[self.doricContext.driver.registry.loaderManager
|
|
|
|
load:prop
|
|
|
|
withContext:self.doricContext] fetch];
|
|
|
|
[asyncResult setResultCallback:^(NSData *fontData) {
|
|
|
|
[self.doricContext dispatchToMainQueue:^{
|
2022-03-03 16:49:06 +08:00
|
|
|
view.font = [self registerFontWithFontData:fontData fontSize:view.font.pointSize];
|
2022-03-02 17:09:26 +08:00
|
|
|
}];
|
|
|
|
}];
|
|
|
|
[asyncResult setExceptionCallback:^(NSException *e) {
|
|
|
|
DoricLog(@"Cannot load resource %@, %@", prop, e.reason);
|
|
|
|
}];
|
2022-03-03 16:49:06 +08:00
|
|
|
} else {
|
|
|
|
DoricLog(@"load resource error for View Type :%@, prop is %@", self.class, name);
|
2022-03-02 17:09:26 +08:00
|
|
|
}
|
2020-03-24 11:06:30 +08:00
|
|
|
} else if ([name isEqualToString:@"lineSpacing"]) {
|
2020-04-13 17:41:17 +08:00
|
|
|
[[self ensureParagraphStyle] also:^(NSMutableParagraphStyle *it) {
|
|
|
|
[it setLineSpacing:[prop floatValue]];
|
|
|
|
[self reloadParagraphStyle];
|
|
|
|
}];
|
|
|
|
} else if ([name isEqualToString:@"underline"]) {
|
|
|
|
[[self ensureParagraphStyle] also:^(NSMutableParagraphStyle *it) {
|
|
|
|
self.underline = prop;
|
|
|
|
[self reloadParagraphStyle];
|
|
|
|
}];
|
|
|
|
} else if ([name isEqualToString:@"strikethrough"]) {
|
|
|
|
[[self ensureParagraphStyle] also:^(NSMutableParagraphStyle *it) {
|
|
|
|
self.strikethrough = prop;
|
|
|
|
[self reloadParagraphStyle];
|
|
|
|
}];
|
2020-04-14 11:44:22 +08:00
|
|
|
} else if ([name isEqualToString:@"htmlText"]) {
|
|
|
|
NSAttributedString *attStr = [[NSAttributedString alloc] initWithData:[prop dataUsingEncoding:NSUnicodeStringEncoding]
|
|
|
|
options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType}
|
|
|
|
documentAttributes:nil
|
|
|
|
error:nil];
|
|
|
|
view.attributedText = attStr;
|
2020-04-27 18:46:39 +08:00
|
|
|
} else if ([name isEqualToString:@"truncateAt"]) {
|
|
|
|
[prop also:^(NSNumber *truncateAt) {
|
|
|
|
[[self ensureParagraphStyle] also:^(NSMutableParagraphStyle *it) {
|
|
|
|
switch (truncateAt.integerValue) {
|
|
|
|
case 1:
|
|
|
|
it.lineBreakMode = NSLineBreakByTruncatingMiddle;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
it.lineBreakMode = NSLineBreakByTruncatingHead;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
it.lineBreakMode = NSLineBreakByClipping;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
it.lineBreakMode = NSLineBreakByTruncatingTail;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
[self reloadParagraphStyle];
|
|
|
|
}];
|
|
|
|
}];
|
|
|
|
|
2021-09-09 17:48:27 +08:00
|
|
|
} else if ([name isEqualToString:@"shadow"]) {
|
|
|
|
NSDictionary *dic = prop;
|
|
|
|
CGFloat opacity = [(NSNumber *) dic[@"opacity"] floatValue];
|
|
|
|
if (opacity > CGFLOAT_MIN) {
|
|
|
|
UIColor *color = DoricColor((NSNumber *) dic[@"color"]);
|
|
|
|
view.layer.shadowColor = color.CGColor;
|
|
|
|
view.layer.shadowRadius = [(NSNumber *) dic[@"radius"] floatValue];
|
|
|
|
view.layer.shadowOffset = CGSizeMake([(NSNumber *) dic[@"offsetX"] floatValue], [(NSNumber *) dic[@"offsetY"] floatValue]);
|
|
|
|
view.layer.shadowOpacity = (float) opacity;
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
} else {
|
|
|
|
[super blendView:view forPropName:name propValue:prop];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-13 17:41:17 +08:00
|
|
|
- (NSMutableParagraphStyle *)ensureParagraphStyle {
|
|
|
|
if (self.paragraphStyle == nil) {
|
|
|
|
self.paragraphStyle = [NSMutableParagraphStyle new];
|
2020-05-06 15:11:01 +08:00
|
|
|
self.paragraphStyle.alignment = NSTextAlignmentCenter;
|
2020-04-27 18:46:39 +08:00
|
|
|
self.paragraphStyle.lineBreakMode = NSLineBreakByTruncatingTail;
|
2020-04-13 17:41:17 +08:00
|
|
|
}
|
|
|
|
return self.paragraphStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)reloadParagraphStyle {
|
|
|
|
NSString *labelText = self.view.text ?: @"";
|
|
|
|
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:labelText];
|
2020-04-14 11:44:22 +08:00
|
|
|
if (self.view.attributedText) {
|
|
|
|
[attributedString setAttributedString:self.view.attributedText];
|
|
|
|
}
|
2020-04-13 17:41:17 +08:00
|
|
|
[attributedString addAttribute:NSParagraphStyleAttributeName value:self.paragraphStyle range:NSMakeRange(0, [labelText length])];
|
|
|
|
if (self.underline) {
|
|
|
|
[attributedString addAttribute:NSUnderlineStyleAttributeName value:self.underline range:NSMakeRange(0, [labelText length])];
|
|
|
|
}
|
|
|
|
if (self.strikethrough) {
|
|
|
|
[attributedString addAttribute:NSStrikethroughStyleAttributeName value:self.strikethrough range:NSMakeRange(0, [labelText length])];
|
|
|
|
}
|
|
|
|
self.view.attributedText = attributedString;
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:29:26 +08:00
|
|
|
- (void)blend:(NSDictionary *)props {
|
|
|
|
[super blend:props];
|
2021-06-15 16:06:57 +08:00
|
|
|
self.view.doricLayout.resolved = NO;
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
2021-07-19 19:49:31 +08:00
|
|
|
|
|
|
|
- (void)requestLayout {
|
|
|
|
[super requestLayout];
|
2021-07-27 17:47:46 +08:00
|
|
|
|
2021-07-19 19:49:31 +08:00
|
|
|
[self.textGradientProps also:^(NSDictionary *dict) {
|
|
|
|
if (CGSizeEqualToSize(self.textGradientSize, self.view.frame.size)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self.textGradientSize = self.view.frame.size;
|
|
|
|
|
|
|
|
NSMutableArray *colors = [[NSMutableArray alloc] init];
|
|
|
|
NSMutableArray *arrayLocations = nil;
|
|
|
|
if (dict[@"colors"] != nil) {
|
|
|
|
NSMutableArray *arrayColors = [dict mutableArrayValueForKey:@"colors"];
|
|
|
|
[arrayColors forEach:^(id obj) {
|
|
|
|
[colors addObject:(__bridge id) DoricColor(obj).CGColor];
|
|
|
|
}];
|
|
|
|
if (dict[@"locations"] != nil) {
|
|
|
|
arrayLocations = [dict mutableArrayValueForKey:@"locations"];
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (dict[@"start"] != nil && dict[@"end"] != nil) {
|
|
|
|
UIColor *start = DoricColor(dict[@"start"]);
|
|
|
|
UIColor *end = DoricColor(dict[@"end"]);
|
|
|
|
|
|
|
|
[colors addObject:(__bridge id) start.CGColor];
|
|
|
|
[colors addObject:(__bridge id) end.CGColor];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int orientation = [dict[@"orientation"] intValue];
|
|
|
|
CGPoint startPoint;
|
|
|
|
CGPoint endPoint;
|
|
|
|
if (orientation == 1) {
|
|
|
|
startPoint = CGPointMake(1, 0);
|
|
|
|
endPoint = CGPointMake(0, 1);
|
|
|
|
} else if (orientation == 2) {
|
|
|
|
startPoint = CGPointMake(1, 0);
|
|
|
|
endPoint = CGPointMake(0, 0);
|
|
|
|
} else if (orientation == 3) {
|
|
|
|
startPoint = CGPointMake(1, 1);
|
|
|
|
endPoint = CGPointMake(0, 0);
|
|
|
|
} else if (orientation == 4) {
|
|
|
|
startPoint = CGPointMake(0, 1);
|
|
|
|
endPoint = CGPointMake(0, 0);
|
|
|
|
} else if (orientation == 5) {
|
|
|
|
startPoint = CGPointMake(0, 1);
|
|
|
|
endPoint = CGPointMake(1, 0);
|
|
|
|
} else if (orientation == 6) {
|
|
|
|
startPoint = CGPointMake(0, 0);
|
|
|
|
endPoint = CGPointMake(1, 0);
|
|
|
|
} else if (orientation == 7) {
|
|
|
|
startPoint = CGPointMake(0, 0);
|
|
|
|
endPoint = CGPointMake(1, 1);
|
|
|
|
} else {
|
|
|
|
startPoint = CGPointMake(0, 0);
|
|
|
|
endPoint = CGPointMake(0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
UIImage *gradientImage;
|
|
|
|
if (arrayLocations != nil) {
|
|
|
|
CGFloat locations[arrayLocations.count];
|
|
|
|
for (int i = 0; i != arrayLocations.count; i++) {
|
|
|
|
locations[i] = [arrayLocations[i] floatValue];
|
|
|
|
}
|
|
|
|
gradientImage = [self gradientImageFromColors:colors
|
|
|
|
locations:locations
|
|
|
|
startPoint:startPoint
|
|
|
|
endPoint:endPoint
|
|
|
|
imgSize:self.textGradientSize];
|
|
|
|
} else {
|
|
|
|
gradientImage = [self gradientImageFromColors:colors
|
|
|
|
locations:NULL
|
|
|
|
startPoint:startPoint
|
|
|
|
endPoint:endPoint
|
|
|
|
imgSize:self.textGradientSize];
|
|
|
|
}
|
|
|
|
self.view.textColor = [UIColor colorWithPatternImage:gradientImage];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2022-03-02 17:09:26 +08:00
|
|
|
- (UIFont *)registerFontWithFontData:(NSData *)fontData fontSize:(CGFloat)fontSize{
|
|
|
|
CGDataProviderRef fontDataProvider = CGDataProviderCreateWithCFData((__bridge CFDataRef)fontData);
|
2022-03-03 16:49:06 +08:00
|
|
|
// THE NEXT LINE IS RELEVANT PART
|
|
|
|
// https://stackoverflow.com/questions/24900979/cgfontcreatewithdataprovider-hangs-in-airplane-mode
|
2022-03-02 17:09:26 +08:00
|
|
|
[UIFont familyNames];
|
2022-03-03 17:07:51 +08:00
|
|
|
CGFontRef fontRef = CGFontCreateWithDataProvider(fontDataProvider);
|
2022-03-02 17:09:26 +08:00
|
|
|
CGDataProviderRelease(fontDataProvider);
|
|
|
|
CTFontManagerRegisterGraphicsFont(fontRef, NULL);
|
|
|
|
NSString *fontName = CFBridgingRelease(CGFontCopyPostScriptName(fontRef));
|
|
|
|
UIFont *font = [UIFont fontWithName:fontName size:fontSize];
|
|
|
|
CGFontRelease(fontRef);
|
|
|
|
return font;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-19 19:49:31 +08:00
|
|
|
- (UIImage *)gradientImageFromColors:(NSArray *)colors
|
|
|
|
locations:(CGFloat *)locations
|
|
|
|
startPoint:(CGPoint)startPoint
|
|
|
|
endPoint:(CGPoint)endPoint
|
|
|
|
imgSize:(CGSize)imgSize {
|
2021-09-02 18:46:11 +08:00
|
|
|
if (@available(iOS 10.0, *)) {
|
|
|
|
UIGraphicsImageRendererFormat *format = [[UIGraphicsImageRendererFormat alloc] init];
|
|
|
|
format.scale = [UIScreen mainScreen].scale;
|
2021-09-08 20:19:41 +08:00
|
|
|
UIGraphicsImageRenderer *render = [[UIGraphicsImageRenderer alloc] initWithSize:imgSize format:format];
|
|
|
|
UIImage *image = [render imageWithActions:^(UIGraphicsImageRendererContext *_Nonnull rendererContext) {
|
2021-09-02 18:46:11 +08:00
|
|
|
CGContextRef context = rendererContext.CGContext;
|
2021-09-08 20:19:41 +08:00
|
|
|
|
2021-09-02 18:46:11 +08:00
|
|
|
CGContextSaveGState(context);
|
|
|
|
CGColorSpaceRef colorSpace = CGColorGetColorSpace((__bridge CGColorRef) colors.lastObject);
|
|
|
|
CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, (__bridge CFArrayRef) colors, locations);
|
|
|
|
CGPoint start = (CGPoint) {startPoint.x * imgSize.width, startPoint.y * imgSize.height};
|
|
|
|
CGPoint end = (CGPoint) {endPoint.x * imgSize.width, endPoint.y * imgSize.height};
|
|
|
|
CGContextDrawLinearGradient(context, gradient, start, end, kCGGradientDrawsBeforeStartLocation | kCGGradientDrawsAfterEndLocation);
|
|
|
|
CGGradientRelease(gradient);
|
|
|
|
CGContextRestoreGState(context);
|
|
|
|
}];
|
|
|
|
return image;
|
|
|
|
} else {
|
|
|
|
UIGraphicsBeginImageContextWithOptions(imgSize, NO, [UIScreen mainScreen].scale);
|
|
|
|
CGContextRef context = UIGraphicsGetCurrentContext();
|
|
|
|
CGContextSaveGState(context);
|
|
|
|
CGColorSpaceRef colorSpace = CGColorGetColorSpace((__bridge CGColorRef) colors.lastObject);
|
|
|
|
CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, (__bridge CFArrayRef) colors, locations);
|
|
|
|
CGPoint start = (CGPoint) {startPoint.x * imgSize.width, startPoint.y * imgSize.height};
|
|
|
|
CGPoint end = (CGPoint) {endPoint.x * imgSize.width, endPoint.y * imgSize.height};
|
|
|
|
CGContextDrawLinearGradient(context, gradient, start, end, kCGGradientDrawsBeforeStartLocation | kCGGradientDrawsAfterEndLocation);
|
|
|
|
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
|
|
|
|
CGGradientRelease(gradient);
|
|
|
|
CGContextRestoreGState(context);
|
|
|
|
UIGraphicsEndImageContext();
|
|
|
|
return image;
|
|
|
|
}
|
2021-07-19 19:49:31 +08:00
|
|
|
}
|
2021-10-27 16:03:11 +08:00
|
|
|
|
|
|
|
- (void)reset {
|
|
|
|
[super reset];
|
|
|
|
self.view.text = nil;
|
|
|
|
self.view.font = nil;
|
|
|
|
self.view.textColor = UIColor.blackColor;
|
|
|
|
self.view.textAlignment = NSTextAlignmentNatural;
|
|
|
|
self.view.numberOfLines = 1;
|
|
|
|
self.view.layer.shadowOpacity = 0;
|
|
|
|
self.view.layer.shadowRadius = 3;
|
|
|
|
self.view.layer.shadowOffset = CGSizeMake(0, -3);
|
|
|
|
self.view.lineBreakMode = NSLineBreakByTruncatingTail;
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
@end
|