iOS使用UIScrollView实现左右滑动UITableView和UICollectionView
在UIScrollView嵌套UITableView這篇文章是非常,但該項目的需求,需要嵌套UICollectionView,和UICollectionView和UITableView有非常多的不同,有些知識到現在也沒搞清楚,一遍又一遍的嘗試,最后做出來的。
圖:
因為本人剛剛接觸ios開發,非常多原理還說不清,所以以下的步驟以圖片為主。文章結尾會附上源代碼地址。可下載自行研究!
1、新建項目
2、改動storyboard,因為要使用到導航欄,所以刪除原有view,從工具箱中拖入NavigationController。并將入口(剪頭)指向該view。刪除自帶的tableviewcontroller,拖入view controller。例如以下圖
3、新建tableviewcontroller,tableviewcontroller默認帶有tableview的視圖,所以不須要勾選“also create xib file”;可是collection viewcontroller就不行。這點比較郁悶。
4、UICollectionViewController不能直接使用,測試了非常久。就是不能嵌套在scrollview中。所以僅僅能先創建view controller,再包括collection view,須要創建xib文件;打開xib文件拖入Collection View,并將此視圖關聯至
@property?(weak,?nonatomic)?IBOutletUICollectionView?*collection;
5、collectionviewcontroller就比較麻煩了。首先創建CollectionView所使用的單元格CollectionViewCell;并新建一個空的xib;
6、打開CollectionCell.xib,從工具箱拖入Collection Cell。設置背景色為黃色,并拖入一個label控件;注意設置Collection Cell的class 為剛才建立的“CollectionCell”類(不是Files Owner);關聯
IBOutletUILabel?*label
。例如以下圖所看到的
至此。全部頁面及前臺已經設置完成
8、先搞定tableviewcontroller,例如以下代碼
// // TMJTableViewController.m // PageTest // // Created by ejiang on 14-6-30. // Copyright (c) 2014年 daijier. All rights reserved. //#import "TMJTableViewController.h"@interfaceTMJTableViewController ()@end@implementation TMJTableViewController- (id)initWithStyle:(UITableViewStyle)style{self = [super initWithStyle:style];if (self) {// Custom initialization}returnself;}- (void)viewDidLoad{[superviewDidLoad];}- (void)didReceiveMemoryWarning{[superdidReceiveMemoryWarning];}#pragma mark - Table view data source- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{return 1;}- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{return 10;}- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{static NSString *cellIdentifier=@"cell";UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];if(cell==nil){cell=[[UITableViewCellalloc] initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:cellIdentifier];}cell.textLabel.text=@"哈哈";return cell;} @end
9、還是看源代碼吧,粘貼代碼沒意思,主要步驟就以上幾部
源代碼下載地址:http://download.csdn.net/detail/wuwo333/8098431
版權聲明:本文博客原創文章。博客,未經同意,不得轉載。
轉載于:https://www.cnblogs.com/zfyouxi/p/4732295.html
總結
以上是生活随笔為你收集整理的iOS使用UIScrollView实现左右滑动UITableView和UICollectionView的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 插件式程序开发及其应用(C#)
- 下一篇: qemu 对虚机的地址空间管理