博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS中分段控制器与UIScrollView结合使用
阅读量:6574 次
发布时间:2019-06-24

本文共 2738 字,大约阅读时间需要 9 分钟。

指定根视图:

[objc]   
  1. // 设置window的根视图控制器  
  2. self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:[RootViewController new]];  
定义属性

[objc]   
  1. #import "RootViewController.h"  
  2. #import "FirstViewController.h"  
  3. #import "SecondTableViewController.h"  
  4. @interface RootViewController ()<UIScrollViewDelegate>  
  5. @property (nonatomicstrongUISegmentedControl *segmentedControl;  
  6. @property (nonatomicstrongUIScrollView *scrollView;  
  7. @property (nonatomicstrongFirstViewController *firstVC;  
  8. @property (nonatomicstrongSecondTableViewController *secondTVC;  
  9. @end  
  10.   
  11. @implementation RootViewController  
创建实现:

[objc]   
  1. - (void)viewDidLoad  
  2. {  
  3.     [super viewDidLoad];  
  4.       
  5.     // 适应scrollView  
  6.     self.automaticallyAdjustsScrollViewInsets = NO;  
  7.       
  8.     self.segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"first"@"second"]];  
  9.     self.navigationItem.titleView = self.segmentedControl;  
  10.     [self.segmentedControl addTarget:self action:@selector(segmentedControlAction:) forControlEvents:UIControlEventValueChanged];  
  11.     self.segmentedControl.selectedSegmentIndex = 0;  
  12.       
  13.     // 创建scrollView  
  14.     self.scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(064, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height - 64)];  
  15.     [self.view addSubview:self.scrollView];  
  16.     // 设置scrollView的内容  
  17.     self.scrollView.contentSize = CGSizeMake([UIScreen mainScreen].bounds.size.width * 2, [UIScreen mainScreen].bounds.size.height - 64);  
  18.     self.scrollView.pagingEnabled = YES;  
  19.     self.scrollView.bounces = NO;  
  20.       
  21.     // 创建控制器  
  22.     self.firstVC = [FirstViewController new];  
  23.     self.secondTVC = [[SecondTableViewController alloc] initWithStyle:UITableViewStylePlain];  
  24.     // 添加为self的子控制器  
  25.     [self addChildViewController:self.firstVC];  
  26.     [self addChildViewController:self.secondTVC];  
  27.     self.firstVC.view.frame = CGRectMake(00self.scrollView.frame.size.width, CGRectGetHeight(self.scrollView.frame));  
  28.     self.secondTVC.view.frame = CGRectMake([UIScreen mainScreen].bounds.size.width0self.scrollView.frame.size.width, CGRectGetHeight(self.scrollView.frame));  
  29.     [self.scrollView addSubview:self.firstVC.view];  
  30.     [self.scrollView addSubview:self.secondTVC.view];  
  31.       
  32.     // 设置scrollView的代理  
  33.     self.scrollView.delegate = self;  
  34. }  

分段控制器点击方法

[objc]   
  1. - (void)segmentedControlAction:(UISegmentedControl *)sender  
  2. {  
  3.     [self.scrollView setContentOffset:CGPointMake(sender.selectedSegmentIndex * self.scrollView.frame.size.width0) animated:NO];  
  4. }  
  5.   
  6. - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView  
  7. {  
  8.     NSInteger n = scrollView.contentOffset.x / scrollView.frame.size.width;  
  9.     self.segmentedControl.selectedSegmentIndex = n;  
  10. }  
first/和second分别为UIViewController和UITableViewController只设颜色即可看效果(这里不做创建)

最终效果:

有问题微博私信我.

原文地址:http://blog.csdn.net/qq_31810357/article/details/49611345

你可能感兴趣的文章
PHP命名空间带来的干扰
查看>>
玩转Google开源C++单元测试框架Google Test系列(gtest)(总)
查看>>
Microsoft .NET Framework 2.0对文件传输协议(FTP)操作(上传,下载,新建,删除,FTP间传送文件等)实现汇总1...
查看>>
Android 查看內存使用
查看>>
手机视频监控系统小结
查看>>
常见排序算法分析
查看>>
[安卓] 2、使用2中方法做按钮监听和图片按钮使用
查看>>
【Debug探索团队公告】Debug探索团队,邀请您的加入
查看>>
Log Explorer 使用简介<转>
查看>>
html5声频audio和视频video
查看>>
WebStorm配置github
查看>>
10分钟教你打造一个微信语音点歌系统
查看>>
1.7. MySQL Custer
查看>>
7.3. php.ini
查看>>
知方可补不足~CSS中的几个伪元素
查看>>
Macro版Property Generator辅助工具
查看>>
EF架构~DefaultValue让我的UnitOfWork更可读
查看>>
HTML5客户端数据存储机制Web Storage和Web SQL Database
查看>>
[LeetCode] Binary Tree Tilt 二叉树的坡度
查看>>
第4章 Selenium2-java WebDriver API (三)
查看>>