我想会有更多的人在寻找这个,但它无处可寻。
一旦包含 UIStackView 的滚动视图滚动到视图顶部,我想要的是使 UIStackView 的一个或多个子视图浮动。该行为应该类似于 tableview 标题。
我想会有更多的人在寻找这个,但它无处可寻。
一旦包含 UIStackView 的滚动视图滚动到视图顶部,我想要的是使 UIStackView 的一个或多个子视图浮动。该行为应该类似于 tableview 标题。
我会告诉你我的第一个想法。
UIScrollViewDelegate
尝试使用这样的委托检测滚动
func scrollViewDidScroll(scrollView: UIScrollView) {
}
像这样检查滚动视图的当前 Y:
scrollView.contentOffset.y
制定您的条件,如果为真,则更改 UIStackView 的位置。
但我不会推荐这样的解决方案。也许最好检查 UI 最佳实践并坚持使用表格视图的标题
@Rebel Designer,你听说过ScrollableStackView库吗?这是github页面:
https://github.com/gurhub/ScrollableStackView
并为您提供一些示例代码:
迅速
import ScrollableStackView
var scrollable = ScrollableStackView(frame: view.frame)
view.addSubview(scrollable)
// add your views with
let rectangle = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 55))
rectangle.backgroundColor = UIColor.blue
scrollable.stackView.addArrangedSubview(rectangle)
// ...
Objective-C
@import ScrollableStackView
ScrollableStackView *scrollable = [[ScrollableStackView alloc] initWithFrame:self.view.frame];
scrollable.stackView.distribution = UIStackViewDistributionFillProportionally;
scrollable.stackView.alignment = UIStackViewAlignmentCenter;
scrollable.stackView.axis = UILayoutConstraintAxisVertical;
[self.view addSubview:scrollable];
UIView *rectangle = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 55)];
[rectangle setBackgroundColor:[UIColor blueColor]];
// add your views with
[scrollable.stackView addArrangedSubview:rectangle];
// ...
希望能帮助到你。