知识点: 1)UIScrollView 2)UIPageControl ====================================================== 一、UIScrollView 1、UIScrollView介绍 可以滚动的视图,一般用于相册的浏览,广告,app首次启
分类:
其他好文 时间:
2016-02-20 16:05:53
阅读次数:
174
一般来说scrollView与UIPageControl都是结合使用,因为在使用滚动视图的时候 ,使用UIPageControl,用户可以 清楚 的明白显示的内容有多少页,如果 没有的话,总不能让用户一个个的去数。用户体验效果不理想。 一般来说,在滑动scrollView的时候,UIPageCont
分类:
其他好文 时间:
2016-02-10 00:28:42
阅读次数:
169
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 9 - (void)viewDidLoad { 10 [super viewDidL
分类:
其他好文 时间:
2016-01-29 00:07:19
阅读次数:
190
//UIScrollView是可以滚动的view,UIView本身不能滚动,子类UIScrollview拓展了滚动方面的功能。//UIScrollView是所有滚动视图的基类。以后的UITableView,UITextView等视图都是继承于该类。//使用场景:显示不下(单张大图);内容太多(图文混...
分类:
其他好文 时间:
2016-01-14 14:16:46
阅读次数:
176
- (void)changePage:(UIPageControl *)pageControl{ [_scrollView setContentOffset:CGPointMake(pageControl.currentPage*ScreenWidth, 0) animated:YES];}-...
分类:
其他好文 时间:
2016-01-09 18:22:37
阅读次数:
183
一、实现效果实现图片的自动轮播 二、实现代码storyboard中布局代码: 1 #import "ViewController.h" 2 #define HMImageCount 5 3 @interface ViewController () 4 @property (weak, ...
分类:
移动开发 时间:
2016-01-03 20:56:11
阅读次数:
1120
KVC 概念:Key Value Coding 作用: 1.KVC可以给对象的私有变量赋值(UIPageControl) 2.用于字典转模型(MJExtension) 3.通过KVC取出私有变量的值 4.模型对象转字典(了解) ...
分类:
其他好文 时间:
2016-01-03 02:45:26
阅读次数:
185
UIPageControl用于显示滑动视图实际拥有的页数UIPageControl *page = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 100, 100, 30);page.background = [UIColor redCol...
分类:
其他好文 时间:
2016-01-02 22:11:36
阅读次数:
741
- (void)viewDidLoad { UIView *view = [[UIViewalloc] initWithFrame:CGRectMake(0, 0, [UIScreenmainScreen].bounds.size.width,240)]; [self.viewaddSubvie.....
分类:
其他好文 时间:
2015-12-21 10:27:29
阅读次数:
224
@interface ViewController : UIViewController{ UIScrollView * scrollView; UIPageControl * pageControl; // BOOL pageControlIsChangingPage; NSMutab...
分类:
其他好文 时间:
2015-12-16 00:29:18
阅读次数:
236