iOS开发UI篇—自定义瀑布流控件(cell的循环利用)一、简单说明 当滚动的时候,向数据源要cell。 当UIScrollView滚动的时候会调用layoutSubviews在tableView中也是一样的,因此,可以用这个方法来监听scrollView的滚动,可以在在这个地方向数据源索要对应.....
分类:
移动开发 时间:
2014-07-30 11:59:43
阅读次数:
405
转帖请注明本文出自xiaanming的博客(http://blog.csdn.net/xiaanming/article/details/17761431),请尊重他人的辛勤劳动成果,谢谢!我之前写了一篇关于美团网,大众点评的购买框效果的文章Android对ScrollView滚动监听,实现美团、大...
分类:
移动开发 时间:
2014-07-29 20:55:32
阅读次数:
468
最终效果图:
BeyondViewController.h
//
// BeyondViewController.h
// 7_scrollView大图展示
//
// Created by beyond on 14-7-24.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import...
分类:
移动开发 时间:
2014-07-26 02:49:16
阅读次数:
217
最终效果图:
BeyondViewController.h
//
// BeyondViewController.h
// 8_scrollVIew分页浏览
//
// Created by beyond on 14-7-25.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#...
分类:
移动开发 时间:
2014-07-26 02:17:06
阅读次数:
206
最终效果图:
BeyondViewController.h
//
// BeyondViewController.h
// 8_scrollVIew分页浏览
//
// Created by beyond on 14-7-25.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
...
分类:
移动开发 时间:
2014-07-26 02:11:03
阅读次数:
173
http://iosdevelopertips.com/user-interface/creating-circular-and-infinite-uiscrollviews.htmlhttps://github.com/darcyliu/SampleCode/tree/master/StreetS...
分类:
移动开发 时间:
2014-07-25 19:13:51
阅读次数:
252
Android开源项目第一篇——个性化控件(View)篇包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar、TextView、ScrollView、TimeView、TipView、FlipView、C...
分类:
移动开发 时间:
2014-07-22 22:53:13
阅读次数:
455
在ScrollView中嵌套使用ListView,看起来ListView只会显示一行多一点,不能滑动。ListView的高度怎么改都有问题,与预期不符合。搜索了一些解决方案,我觉得最好不要用这样的设计,因为默认情况下android 禁止在ScrollView中放入另外的ScrollView,它的高度...
分类:
移动开发 时间:
2014-07-22 22:42:34
阅读次数:
186
滚动视图ScrollView由FarmeLayout派生而出,他就是一个用于为普通组件添加垂直滚动条的组件;ScrollView里面最多包含一个组件,而ScrollView的作用就是为该组件添加一个垂直滚动条。(ScrollView的作用和JScrollPane非常相似,他们甚至不能被称为真正的容器...
分类:
移动开发 时间:
2014-07-21 14:33:46
阅读次数:
233
1.简单的效果 简单的代码2.主要用到scrollViewDidScroll代理方法 代码如下- (void)scrollViewDidScroll:(UIScrollView *)scrollView{ float bigX = _fScrollView.bounds.size.width...
分类:
移动开发 时间:
2014-07-21 08:23:02
阅读次数:
242