簡體   English   中英

在ASTextNode周圍添加填充

[英]Add padding around ASTextNode

我正在使用AsyncDisplayKit (第一次),並且在ASTextNode具有ASCellNode 我想在ASTextNode內部的文本周圍添加填充或插圖 我試圖用ASDisplayNode包裝它,但是每當我在calculateSizeThatFits:計算它的大小時,它總是返回0。任何建議將不勝感激。 ASCellNode子類中的代碼是:

- (CGSize)calculateSizeThatFits:(CGSize)constrainedSize
{
    CGSize textSize = [self.commentNode measure:CGSizeMake(constrainedSize.width - kImageSize - kImageToCommentPadding - kCellPadding - kInnerPadding, constrainedSize.height)];

    return CGSizeMake(constrainedSize.width, textSize.height);
}

- (void)layout
{
    self.imageNode.frame = CGRectMake(kCellPadding, kCellPadding, kImageSize, kImageSize);
    self.imageNode.layer.cornerRadius = kImageSize / 2.f;
    self.imageNode.layer.masksToBounds = YES;
    self.imageNode.layer.borderColor = [UIColor whiteColor].CGColor;
    self.imageNode.layer.borderWidth = 2.f;

    self.commentNode.backgroundColor = [UIColor whiteColor];
    self.commentNode.layer.cornerRadius = 8.f;
    self.commentNode.layer.masksToBounds = YES;

    CGSize textSize = self.commentNode.calculatedSize;
    self.commentNode.frame = CGRectMake(kCellPadding + kImageSize + kCellPadding, kCellPadding, textSize.width, textSize.height);
}

如果節點返回的高度/大小為0,則更改其內容后可能會忘記使其當前大小無效。

使用: [node invalidateCalculatedSize];

要在文本節點周圍進行填充,可以在其后添加所需大小的節點,然后在文本節點上設置hitTestSlop 這將增加其可點擊的面積。

更好的方法可能是將其嵌入自定義節點中,例如

接口

@interface InsetTextNode: ASControlNode

@property (nonatomic) UIEdgeInsets textInsets;
@property (nonatomic) NSAttributedString * attributedString;
@property ASTextNode * textNode;

@end

履行

@implementation InsetTextNode

- (instancetype)init
{
    self = [super init];
    if (!self) return nil;

    [self addSubnode:textNode];
    self.textInsets = UIEdgeInsetsMake(8, 16, 8, 16);

    return self;
}

- (CGSize)calculateSizeThatFits:(CGSize)constrainedSize
{
    CGFloat availableTextWidth = constrainedSize.width - self.textInsets.left - self.textInsets.right;
    CGFloat availableTextHeight = constrainedSize.height - self.textInsets.top - self.textInsets.bottom;
    CGSize constrainedTextSize = CGSizeMake(availableTextWidth, availableTextHeight);

    CGSize textSize = [self.textNode measure:constrainedTextSize];

    CGFloat finalWidth = self.textInsets.left + textSize.width + self.textInsets.right;
    CGFloat finalHeight = self.textInsets.top + textSize.height + self.textInsets.bottom;

    CGSize finalSize = CGSizeMake(finalWidth, finalHeight);

    return finalSize;
}

- (void)layout
{
    CGFloat textX = self.textInsets.left;
    CGFloat textY = self.textInsets.top;

    CGSize textSize = self.textNode.calculatedSize;

    textNode.frame = CGRectMake(textX, textY, textSize.width, textSize.height);
}

- (NSAttributedString *) attributedString
{
     return self.textNode.attributedString;
}

- (void)setAttributedString:(NSAttributedString *)attributedString
{
    self.textNode.attributedString = attributedString;
    [self invalidateCalculatedSize];
}

- (void)setTextInsets:(UIEdgeInsets)textInsets
{
    _textInsets = textInsets;

    [self invalidateCalculatedSize];
}

@end

2018年:現在實現相同的效果非常容易,因此,萬一有人需要在此處添加填充是Swift 4解決方案:-

   let messageLabel: ASTextNode = {
    let messageNode = ASTextNode()
    messageNode.textContainerInset = UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10)
    return messageNode
}()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM