时间:2021-05-19
使用scrollView的一个子视图对contentSize进行调整
_scroll_Bg = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 100, SCREEN_W, 200)]; _scroll_Bg.pagingEnabled = YES; _scroll_Bg.delegate = self; _scroll_Bg.backgroundColor = [UIColor redColor]; [self.view addSubview:_scroll_Bg];1,现在scrollView添加一个主要子视图,大小贴合scrollView
UIView *bgView = [[UIView alloc] init]; bgView.backgroundColor = [UIColor blueColor]; [_scroll_Bg addSubview:bgView]; [bgView mas_makeConstraints:^(MASConstraintMaker *make) { make.top.left.bottom.and.right.equalTo(_scroll_Bg).with.insets(UIEdgeInsetsZero); make.width.equalTo(_scroll_Bg); }];2,此后所有子视图都需添加在此bgView上
UIView *childV = [[UIView alloc] init]; childV.backgroundColor = [UIColor cyanColor]; [bgView addSubview:childV]; [childV mas_makeConstraints:^(MASConstraintMaker *make) { make.left.right.mas_equalTo(0); make.top.mas_equalTo(250); make.height.mas_equalTo(1000); }];3,以最后所加子视图为准,再对bgView进行重新约束
[bgView mas_makeConstraints:^(MASConstraintMaker *make) { make.bottom.equalTo(childV.mas_bottom); }];以上就是本次给大家整理的全部内容,如果还有任何不明白的地方可以在下方的留言区讨论,感谢你对的支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android控制ScrollView滚动的实例详解在开发中,我们经常需要更新列表,并将列表拉倒最底部,比如发表微博,聊天界面等等,这里有两种办法,第一种,使用
据说是在IOS8之后,但是我是在iOS10中遇到的问题,之前使用的下拉刷新可能会抖一下,在滑动很快的时候在下拉松开后,scrollView即将回到“刷新中…”的
本文主要介绍的是关于ios中scrollview上拉显示navbar下拉隐藏的相关内容,分享出来供大家参考学习,下面来看看详细的介绍:动画效果:关于下拉隐藏na
Android中ScrollView嵌套GridView显示不全解决方法由于ScrollView和GridView这两款控件都自带滚动条,一起使用GridVie
IOS开发UIAlertController详解在iOS8.0后,苹果弃用了UIAlertView和UIActionSheet,转而使用UIAlertContr