轉:addChildViewController實現網易新聞首頁切換


            原本只是打算介紹一下addChildViewController這個方法的,正好今天朋友去換工做面試問到網易新聞標籤欄效果的實現,就結合它,用個小Demo實例介紹一下:(具體解釋都寫在了Demo裏面的註釋)面試

 

[objc]  view plaincopy在CODE上查看代碼片派生到個人代碼片
  1. //  
  2. //  HMTMainViewController.m  
  3. //  UIScrollView  
  4. //  
  5. //  Created by HMT on 14-6-25.  
  6. //  Copyright (c) 2014年 humingtao. All rights reserved.  
  7. //  
  8.   
  9. #import "HMTMainViewController.h"  
  10. #import "HMTFirstViewController.h"  
  11. #import "HMTSecondViewController.h"  
  12. #import "HMTThirdViewController.h"  
  13.   
  14. @interface HMTMainViewController () <UIScrollViewDelegate>  
  15.   
  16. @property (nonatomic ,strong) HMTThirdViewController  *thirdVC;  
  17. @property (nonatomic ,strong) HMTFirstViewController  *firstVC;  
  18. @property (nonatomic ,strong) HMTSecondViewController *secondVC;  
  19.   
  20. @property (nonatomic ,strong) UIViewController *currentVC;  
  21.   
  22. @property (nonatomic ,strong) UIScrollView *headScrollView;  //  頂部滾動視圖  
  23.   
  24. @property (nonatomic ,strong) NSArray *headArray;  
  25.   
  26. @end  
  27.   
  28. @implementation HMTMainViewController  
  29.   
  30. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  
  31. {  
  32.     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  
  33.     if (self) {  
  34.         // Custom initialization  
  35.     }  
  36.     return self;  
  37. }  
  38.   
  39. - (void)viewDidLoad  
  40. {  
  41.     [super viewDidLoad];  
  42.     // Do any additional setup after loading the view.  
  43.      
  44.     self.navigationItem.title = @"網易新聞Demo";  
  45.       
  46.     self.headArray = @[@"頭條",@"娛樂",@"體育",@"財經",@"科技",@"NBA",@"手機"];  
  47.     /** 
  48.      *   automaticallyAdjustsScrollViewInsets   又被這個屬性坑了 
  49.      *   我"UI高級"裏面一篇文章着重講了它,你們能夠去看看 
  50.      */  
  51.     self.automaticallyAdjustsScrollViewInsets = NO;  
  52.     self.headScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 64, 320, 40)];  
  53.     self.headScrollView.backgroundColor = [UIColor purpleColor];  
  54.     self.headScrollView.contentSize = CGSizeMake(560, 0);  
  55.     self.headScrollView.bounces = NO;  
  56.     self.headScrollView.pagingEnabled = YES;  
  57.     [self.view addSubview:self.headScrollView];  
  58.     for (int i = 0; i < [self.headArray count]; i++) {  
  59.           
  60.         UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];  
  61.         button.frame = CGRectMake(0 + i*80, 0, 80, 40);  
  62.         [button setTitle:[self.headArray objectAtIndex:i] forState:UIControlStateNormal];  
  63.         button.tag = i + 100;  
  64.         [button addTarget:self action:@selector(didClickHeadButtonAction:) forControlEvents:UIControlEventTouchUpInside];  
  65.         [self.headScrollView addSubview:button];  
  66.           
  67.     }  
  68.       
  69.     /* 
  70.      蘋果新的API增長了addChildViewController方法,而且但願咱們在使用addSubview時,同時調用[self addChildViewController:child]方法將sub view對應的viewController也加到當前ViewController的管理中。 
  71.      對於那些當前暫時不須要顯示的subview,只經過addChildViewController把subViewController加進去;須要顯示時再調用transitionFromViewController方法。將其添加進入底層的ViewController中。 
  72.      這樣作的好處: 
  73.       
  74.      1.無疑,對頁面中的邏輯更加分明瞭。相應的View對應相應的ViewController。 
  75.      2.當某個子View沒有顯示時,將不會被Load,減小了內存的使用。 
  76.      3.當內存緊張時,沒有Load的View將被首先釋放,優化了程序的內存釋放機制。 
  77.      */  
  78.       
  79.     /** 
  80.      *  在iOS5中,ViewController中新添加了下面幾個方法: 
  81.      *  addChildViewController: 
  82.      *  removeFromParentViewController 
  83.      *  transitionFromViewController:toViewController:duration:options:animations:completion: 
  84.      *  willMoveToParentViewController: 
  85.      *  didMoveToParentViewController: 
  86.      */  
  87.     self.firstVC = [[HMTFirstViewController alloc] init];  
  88.     [self.firstVC.view setFrame:CGRectMake(0, 104, 320, 464)];  
  89.     [self addChildViewController:_firstVC];  
  90.       
  91.     self.secondVC = [[HMTSecondViewController alloc] init];  
  92.     [self.secondVC.view setFrame:CGRectMake(0, 104, 320, 464)];  
  93.       
  94.     self.thirdVC = [[HMTThirdViewController alloc] init];  
  95.     [self.thirdVC.view setFrame:CGRectMake(0, 104, 320, 464)];  
  96.       
  97.     //  默認,第一個視圖(你會發現,全程就這一個用了addSubview)  
  98.     [self.view addSubview:self.firstVC.view];  
  99.     self.currentVC = self.firstVC;  
  100.       
  101. }  
  102.   
  103. - (void)didClickHeadButtonAction:(UIButton *)button  
  104. {  
  105.     //  點擊處於當前頁面的按鈕,直接跳出  
  106.     if ((self.currentVC == self.firstVC && button.tag == 100)||(self.currentVC == self.secondVC && button.tag == 101.)) {  
  107.         return;  
  108.     }else{  
  109.       
  110.         //  展現2個,其他同樣,自行補全噢  
  111.         switch (button.tag) {  
  112.             case 100:  
  113.                 [self replaceController:self.currentVC newController:self.firstVC];  
  114.                 break;  
  115.             case 101:  
  116.                 [self replaceController:self.currentVC newController:self.secondVC];  
  117.                 break;  
  118.             case 102:  
  119.                 //.......  
  120.                 break;  
  121.             case 103:  
  122.                 //.......  
  123.                 break;  
  124.             case 104:  
  125.                 //.......  
  126.                 break;  
  127.             case 105:  
  128.                 //.......  
  129.                 break;  
  130.             case 106:  
  131.                 //.......  
  132.                 break;  
  133.                 //.......  
  134.             default:  
  135.                 break;  
  136.         }  
  137.     }  
  138.   
  139. }  
  140.   
  141. //  切換各個標籤內容  
  142. - (void)replaceController:(UIViewController *)oldController newController:(UIViewController *)newController  
  143. {  
  144.     /** 
  145.      *            着重介紹一下它 
  146.      *  transitionFromViewController:toViewController:duration:options:animations:completion: 
  147.      *  fromViewController      當前顯示在父視圖控制器中的子視圖控制器 
  148.      *  toViewController        將要顯示的姿式圖控制器 
  149.      *  duration                動畫時間(這個屬性,old friend 了 O(∩_∩)O) 
  150.      *  options                 動畫效果(漸變,從下往上等等,具體查看API) 
  151.      *  animations              轉換過程當中得動畫 
  152.      *  completion              轉換完成 
  153.      */  
  154.       
  155.     [self addChildViewController:newController];  
  156.     [self transitionFromViewController:oldController toViewController:newController duration:2.0 options:UIViewAnimationOptionTransitionCrossDissolve animations:nil completion:^(BOOL finished) {  
  157.                   
  158.         if (finished) {  
  159.                       
  160.             [newController didMoveToParentViewController:self];  
  161.             [oldController willMoveToParentViewController:nil];  
  162.             [oldController removeFromParentViewController];  
  163.             self.currentVC = newController;  
  164.                   
  165.         }else{  
  166.                       
  167.             self.currentVC = oldController;  
  168.                   
  169.         }  
  170.     }];  
  171. }  

 

相關文章
相關標籤/搜索