7中使用对象库的Stack

7中使用对象库的Stack

本文介绍了如何在Xcode 7中使用对象库的Stack View的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我最近安装了 Xcode 7 beta 并在对象库中找到了
new ,例如

I recently installed Xcode 7 beta and found something new in object library like

水平堆栈视图和垂直堆栈视图

是否来自其他一些移动平台

Is it derived from some other mobile platform

推荐答案

使用 UIStackView 的一个主要优点是它使用自动布局定位和大小安排 UIViews 。因此,您不必担心将UIViews放在 UIStackView 中。对于水平堆栈,这意味着第一个排列视图的前沿固定到堆栈的前沿,而最后一个排列视图的后缘固定到堆栈的后缘。您可以尝试将两个或多个控件插入水平堆栈视图,它们如何相互水平对齐。

A major advantage of using UIStackView is it uses Auto Layout to position and size its arranged UIViews. Therefore you dont need to worry about positioning UIViews in a UIStackView.For a horizontal stack, this means the first arranged view’s leading edge is pinned to the stack’s leading edge, and the last arranged view’s trailing edge is pinned to the stack’s trailing edge. You can try by inserting two or more controls to a horizontal stack view,how they align horizontally w.r.t each other.

如何使用

以下是raywenderlich网站的详细教程:

Here is a detail tutorial from raywenderlich site:

更多信息,请查看

这篇关于如何在Xcode 7中使用对象库的Stack View的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 01:21