您好,登錄后才能下訂單哦!
UIPageControl
1.表示頁數
2.表示當前正處于第幾頁
3.點擊切換頁數
屬性的簡單用法
UIPageControl *pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(10, [UIScreen mainScreen].bounds.size.height - 40, 300, 20)];
pageControl.tag = 100;
//設置表示的頁數
pageControl.numberOfPages = 6;
//設置選中的頁數
pageControl.currentPage = 0;
//設置未選中點的顏色
pageControl.pageIndicatorTintColor = [UIColor grayColor];
//設置選中點的顏色
pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
//添加響應事件
[pageControl addTarget:self action:@selector(handlePageControl:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:pageControl];
[pageControl release];
UIScrollView
基本用法:
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(20, 20, 280, 440)];
//設置內容頁的大小
scrollView.contentSize = CGSizeMake(280, 440);
scrollView.tag = 200;
//設置內容區域的偏移量, (修改scrollView左上角的點距離自身坐標系坐標原點的位置,修改bounds的origin)
//內容區域相對frame上下左右從哪顯示
scrollView.contentInset = UIEdgeInsetsMake(100, 100, 0, 0);
scrollView.contentOffset = CGPointMake(200, 0);
[scrollView setContentOffset:CGPointMake(200, 0) animated:YES];
scrollView.backgroundColor = [UIColor whiteColor];
//設置scrollView能否滑動
scrollView.scrollEnabled = NO;
//隱藏水平滑動指示器
scrollView.showsHorizontalScrollIndicator = NO;
//隱藏垂直滑動指示器
scrollView.showsVerticalScrollIndicator = NO;
//關閉滑動時的回彈效果
scrollView.bounces = NO;
//設置當點擊狀態條時,scrollView 能否滑到最頂端 (YES滑到最頂端)
scrollView.scrollsToTop = YES;
//設置scrollView是否可以整屏滑動(一次滑動整個scrollView的大小)
scrollView.pagingEnabled = YES;
//scrollView 的代理
scrollView.delegate = self;
//設置最大縮放比例
scrollView.maximumZoomScale = 4.0;
//設置最小縮放比例
scrollView.minimumZoomScale = 1.0;
[self.view addSubview:scrollView];
//scrollView 上添加p_w_picpathView
//如果想讓視圖滑動.內容頁的大小必須要比scrollView的大小要大,
UIImageView *p_w_picpathView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, scrollView.contentSize.width, scrollView.contentSize.height)];
p_w_picpathView.p_w_picpath = [UIImage p_w_picpathNamed:@"4.JPG"];
p_w_picpathView.tag = 100;
[scrollView addSubview:p_w_picpathView];
[p_w_picpathView release];
[scrollView release];
UISegmentedControl 是iOS中的分段控件,其實是多個button的組合視圖,通過切換不同的segment(嚴格的說點擊不同的button)響應不同的操作.
基本屬性
//UISegmentedControl 是iOS中的分段控件,其實是多個button的組合視圖,通過切換不同的segment(嚴格來說,點擊不同的button)響應不同的操作
NSArray *titles = @[@"輕拍", @"長按", @"輕掃", @"平移"];
UISegmentedControl *segmentControl = [[UISegmentedControl alloc] initWithItems:titles];
//設置默認選中的分段
segmentControl.selectedSegmentIndex = 0;
segmentControl.frame = CGRectMake(10, 40, 300, 30);
//給segmentControl添加響應事件
[segmentControl addTarget:self action:@selector(handleSegmentControl:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:segmentControl];
[segmentControl release];
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。