真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

IOS里的重要控件

UIPageControl
1.表示頁數(shù)
2.表示當(dāng)前正處于第幾頁
3.點(diǎn)擊切換頁數(shù)
屬性的簡單用法
 UIPageControl *pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(10, [UIScreen mainScreen].bounds.size.height - 40, 300, 20)];
    pageControl.tag = 100;
    //設(shè)置表示的頁數(shù)
    pageControl.numberOfPages = 6;
    //設(shè)置選中的頁數(shù)
    pageControl.currentPage = 0;
    //設(shè)置未選中點(diǎn)的顏色
    pageControl.pageIndicatorTintColor = [UIColor grayColor];
    //設(shè)置選中點(diǎn)的顏色
    pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
    //添加響應(yīng)事件
    [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)];
    //設(shè)置內(nèi)容頁的大小
    scrollView.contentSize = CGSizeMake(280, 440);
    scrollView.tag = 200;
    //設(shè)置內(nèi)容區(qū)域的偏移量, (修改scrollView左上角的點(diǎn)距離自身坐標(biāo)系坐標(biāo)原點(diǎn)的位置,修改bounds的origin)
    //內(nèi)容區(qū)域相對frame上下左右從哪顯示
    scrollView.contentInset = UIEdgeInsetsMake(100, 100, 0, 0);
    scrollView.contentOffset = CGPointMake(200, 0);
    [scrollView setContentOffset:CGPointMake(200, 0) animated:YES];
    scrollView.backgroundColor = [UIColor whiteColor];
    //設(shè)置scrollView能否滑動(dòng)
    scrollView.scrollEnabled = NO;
    //隱藏水平滑動(dòng)指示器
    scrollView.showsHorizontalScrollIndicator = NO;
    //隱藏垂直滑動(dòng)指示器
    scrollView.showsVerticalScrollIndicator = NO;
    //關(guān)閉滑動(dòng)時(shí)的回彈效果
    scrollView.bounces = NO;
    //設(shè)置當(dāng)點(diǎn)擊狀態(tài)條時(shí),scrollView 能否滑到最頂端 (YES滑到最頂端)
    scrollView.scrollsToTop = YES;
    //設(shè)置scrollView是否可以整屏滑動(dòng)(一次滑動(dòng)整個(gè)scrollView的大小)
    scrollView.pagingEnabled = YES;
    //scrollView 的代理
    scrollView.delegate = self;
    //設(shè)置最大縮放比例
    scrollView.maximumZoomScale = 4.0;
    //設(shè)置最小縮放比例
    scrollView.minimumZoomScale = 1.0;
    [self.view addSubview:scrollView];
    //scrollView 上添加p_w_picpathView
    //如果想讓視圖滑動(dòng).內(nèi)容頁的大小必須要比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中的分段控件,其實(shí)是多個(gè)button的組合視圖,通過切換不同的segment(嚴(yán)格的說點(diǎn)擊不同的button)響應(yīng)不同的操作.
基本屬性
    //UISegmentedControl  是iOS中的分段控件,其實(shí)是多個(gè)button的組合視圖,通過切換不同的segment(嚴(yán)格來說,點(diǎn)擊不同的button)響應(yīng)不同的操作
    NSArray *titles = @[@"輕拍", @"長按", @"輕掃", @"平移"];
    UISegmentedControl *segmentControl = [[UISegmentedControl alloc] initWithItems:titles];
    //設(shè)置默認(rèn)選中的分段
    segmentControl.selectedSegmentIndex = 0;
    segmentControl.frame = CGRectMake(10, 40, 300, 30);
    //給segmentControl添加響應(yīng)事件
    [segmentControl addTarget:self action:@selector(handleSegmentControl:) forControlEvents:UIControlEventValueChanged];
    [self.view addSubview:segmentControl];
    [segmentControl release];

成都創(chuàng)新互聯(lián)公司是一家專業(yè)從事網(wǎng)站制作、網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)的品牌網(wǎng)絡(luò)公司。如今是成都地區(qū)具影響力的網(wǎng)站設(shè)計(jì)公司,作為專業(yè)的成都網(wǎng)站建設(shè)公司,成都創(chuàng)新互聯(lián)公司依托強(qiáng)大的技術(shù)實(shí)力、以及多年的網(wǎng)站運(yùn)營經(jīng)驗(yàn),為您提供專業(yè)的成都網(wǎng)站建設(shè)、營銷型網(wǎng)站建設(shè)及網(wǎng)站設(shè)計(jì)開發(fā)服務(wù)!


網(wǎng)頁題目:IOS里的重要控件
轉(zhuǎn)載源于:http://weahome.cn/article/jdidod.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部