会自动生成frame,可以设置其中心点center 来布局 @property(nonatomic) NSInteger numberOfPages;????????? @property(nonatomic) NSInteger currentPage; 设置页数通过numberOfPages属性设置, curren...
分类:
其他好文 时间:
2015-08-27 11:23:27
阅读次数:
147
?、UIScrollView的常?属性 ? ? ?UIScrollView是所有滚动视图的基类。以后的UITableView, UITextView等视图都是继承于该类。 1、UIScrollView核?功能 滚动:contentSize?于frame.size的时候,能够滚动。 ...
分类:
其他好文 时间:
2015-08-25 13:01:35
阅读次数:
198
首先我们要先建一个project,选择iOS下的第一个Application 中的Single View Application开始工作已经准备完毕现在我们进入到Main.storyboard拖控件需要用到的控件有UIScrollView也就是滚动的那个UIPageControl也就是图片下面那几个...
分类:
其他好文 时间:
2015-08-20 22:25:22
阅读次数:
205
UIPageControl*_page;#pragma mark添加分页指示器- (void)addPageControl{ CGSizesize =self.view.frame.size;//DCJ新特性这个类的视图大小 UIPageControl*page = [[UIPageControla...
分类:
其他好文 时间:
2015-08-19 23:19:26
阅读次数:
116
欢迎界面,还是比较简单的,一个UIScrollView控件,一个UIPageControl,几个UIImageView即可摆平。在这里光玩这些,就显得诚意不足了。特意拓展一下,再加几个UIButton,可以让这个欢迎界面变成可点击的,可滑动的模块添加在页面中,然后再加一个NSTimer,让它自己.....
分类:
移动开发 时间:
2015-08-15 13:20:37
阅读次数:
195
#import "MainViewController.h"
#define WIDTH self.view.frame.size.width
#define HEIGHT self.view.frame.size.height
@interface MainViewController ()
@property(nonatomic, retain)UIS...
分类:
其他好文 时间:
2015-08-13 23:46:47
阅读次数:
186
素材地址 http://download.csdn.net/download/swanzhu/9002215
//
// ZYAppDelegate.m
// ScrollView_Page
//
// Created by mac on 15-8-13.
// Copyright (c) 2015年 baidu. All rights reserved.
//
#imp...
分类:
移动开发 时间:
2015-08-13 22:25:51
阅读次数:
232
UIPageControll 是继承于UIControl的一个IOS系统UI控件,可以提供给开发者设计分页效果的功能。初始化方法UIPageControl * page= [[UIPageControlalloc]initWithFrame:CGRectMake(100, 100, 100, 100...
分类:
其他好文 时间:
2015-08-08 16:18:06
阅读次数:
94
RootViewController.m
@interface
RootViewController ()UIScrollViewDelegate>
@property (nonatomic,
retain) UIPageControl *pageControl;
@property (nonatomic,
retain) UIScrollView...
分类:
其他好文 时间:
2015-08-05 16:18:23
阅读次数:
190
#import @interface ViewController : UIViewController@end#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (voi...
分类:
其他好文 时间:
2015-08-04 13:12:11
阅读次数:
116