如何为第一个组件右对齐

How to right align for the first component

本文关键字:组件 右对齐 第一个      更新时间:2023-10-16

我正在尝试实现以下布局:

     Name: James
   Gender: Male
Followers: Brian, Jason and Mike.

我可以想象顶层是使用CKStackLayout,但是对于每个条目,例如:"Name: James",如何使其在方框内右对齐?

我正在使用类似以下的东西,在固定宽度组件内包装文本,并设置标签组件使用NSTextAlignmentRight对齐,但它不起作用,左和右都只是'left-align':

static CKComponent *singleLine(NSString *left, NSString *right)
{
  CKStackLayoutComponent *stackComponent =
  [CKStackLayoutComponent
   newWithView:{}
   size:{}
   style:{
     .direction = CKStackLayoutDirectionHorizontal,
     .alignItems = CKStackLayoutAlignItemsStretch,}
       children:{
         {.component = [CKStaticLayoutComponent 
                        newWithView:{}
                        size:{.width = CKRelativeDimension(10)}]},
         {.component =
           [CKStaticLayoutComponent
            newWithView:{}
            size:{.width = CKRelativeDimension(88)}
            children:{
            {
            .component =
            [CKLabelComponent
             newWithLabelAttributes:{
               .string = left,
               .alignment = NSTextAlignmentRight,
               .font = [UIFont boldSystemFontOfSize:14.0],
               .maximumNumberOfLines = 1
             }
             viewAttributes:{}],
          }
        }],
     },
     {
       .component =
       [CKLabelComponent
        newWithLabelAttributes:{
          .string = right,
          .alignment = NSTextAlignmentLeft,
          .font = [UIFont systemFontOfSize:14.0],
          .maximumNumberOfLines = 1
        }
        viewAttributes:{}],
       .spacingBefore = 10.0
     }
   }];
  return stackComponent;
}

谢谢!

我认为你的解决方案很好。另一种解决方案是通过重写computeLayoutThatFits:来编写自己的自定义布局。一般情况下最好避免这种情况,但对于像表单这样的复杂布局,它可能是一个救星。

也许你应该给外部stacklout(它包裹多个单行,并具有垂直布局方向):.alignItems = CKStackLayoutAlignItemsStretch