iOS类似淘宝商品详情页上拉效果



第一个控制器

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{

float y;

if (13 * 44 + 64 - IPHONE_H < 0) {//注意这里的计算是行数乘以行高减去屏幕的高度再加上导航栏的高度(这里是没有满屏的情况)

y = 0;

}

else{//这里是满屏的情况

y = 13 * 44 - IPHONE_H + 20 + 64;

}

if (scrollView.contentOffset.y > y) {

[UIView animateWithDuration:0.8 animations:^{

MyWebViewController *webVC = [[MyWebViewController alloc]init];

UINavigationController *navc = [[UINavigationController alloc]initWithRootViewController:webVC];

[self presentViewController:navc animated:YES completion:nil];

}];

}

NSLog(@"---%.2f",scrollView.contentOffset.y);

}

第二个控制器

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{

if (scrollView.contentOffset.y < -135) {

[UIView animateWithDuration:0.8 animations:^{

[self dismissViewControllerAnimated:YES completion:nil];

}];

}

NSLog(@"---%.2f",scrollView.contentOffset.y);

}

demo下载地址:https://github.com/xiaohuangge/tableViewPullWebView

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容