在 iOS 中是否有一个 UIView 可以在一列(或行)中布置两个子视图,以便一个视图具有固定的高度(或宽度),而另一个视图扩展以填充空白空间?
例如, WPF 具有System.Windows.Controls.Grid类。我会用它来解决这个问题,如下所示:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="123" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Row="0" Content="I have a fixed height" />
<Label Grid.Row="1" Content="My height expands to fill the empty space" />
</Grid>