在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>