FPLinearLayout 0.3

FPLinearLayout 0.3

测试已经测试
语言语言 MUMPSMUMPS
许可证 BSD
发布最新发布2014年12月

未填写 维护。



  • Warut Surapat

FPLinearLayoutView

FPLinearLayoutView 允许您在不关心位置的情况下添加一个视图作为子视图。FPLinearLayoutView 将处理所有添加的视图,并将它们放置在正确的地方(根据选择的方向)。这基本上使得 UIView 像安卓的线性布局一样工作。

功能

  • 如普通 UIView 一样运行。
  • 根据决定的方向自动处理子视图的位置。
  • 子视图可以水平或垂直定位。
  • 可以指定即将添加的视图的边距(上部左边缘)。

使用示例

// Horizontal oriented layout.
FPLinearLayoutView *layoutView = [FPLinearLayoutView horizontalLayout];

// Appending view with default margin.
UIView* view = [[UIView alloc] initWithFrame:CGRect(0, 0, 320, 100)];
[layoutView appendView:view]

// Appending view with specific margins.
UIView* view = [[UIView alloc] initWithFrame:CGRect(0, 0, 320, 100)];
[layoutView appendView:view marginLeft:10.0f marginTop:20.0f];