一、自定的TableView
有的时候,我们需要vc视图中添加一个表视图,此时在ViewController中使用TableViewController是不可行的这就,因此就要使用自定义的TableView了。
如下图:
1、拖拽TableView:向ViewController中添加一个TableView,如果需要自己配置自定义的cell,可以添加进去,然后为这个cell创建一个继承自TableViewCell的类,绑定它即可。
2、设置代理:绑定ViewController为TableView的代理
3、将拖拽的TableView成为属性
4、实现协议中的三问
//-------------------------------实现过程--------------------------------
//在ViewController.m中
#import "ViewController.h"
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>
//将TableView置为属性,这样我们就可以访问它
@property (weak, nonatomic) IBOutlet UITableView *messageTableView;
//存储信息
@property(nonatomic,strong)NSMutableArray *messageArray;
@end
- (void)viewDidLoad {
    [super viewDidLoad];
//注册可重用的cell,这样我们就可以在第三问就可以dequeueReusableCell,如果是自定义的cell类,也是在这注册。
    [self.messageTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
//初始化可变数组(不可变的,可以不初始化)
    self.messageArray=[NSMutableArray new];
}
//——————————————----------------—实现协议的方法--------------------------------
#pragma TableView的协议
//1、第一问:回答有几段
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}
//2、第二问:回答每段有几行(Row)
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return self.messageArray.count;
}
//3、第三问:回答每行cell是什么
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *cell=[self.messageTableView dequeueReusableCellWithIdentifier:@"cell"];
    if(cell == nil){
        cell = [UITableViewCell alloc];
    }
    cell.textLabel.text=self.messageArray[indexPath.row];
    NSLog(@"self.messageArray[indexPath.row] = %@",self.messageArray[indexPath.row]);
    NSLog(@"cell.textLabel.text = %@",cell.textLabel.text);
    return cell;
}
//----------------------------End-----------------------------------
//----------------------------纯代码创建-----------------------------------
@interface MainViewController ()<UITableViewDataSource,UITableViewDelegate>
@property(nonatomic,strong)UITableView *tableView;
@end
@implementation MainViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    [self setupbackgroundView];
}
-(void)setupbackgroundView{ 
    //创建TableView
    self.tableView=[[UITableView alloc]initWithFrame:self.view.bounds];
    self.tableView.backgroundColor=[UIColor clearColor];
//设置代理
    self.tableView.delegate=self;
    self.tableView.dataSource=self;
    //设置分割线的颜色
    self.tableView.separatorColor=[UIColor colorWithWhite:0.1 alpha:0.3];
    //添加到view
    [self.view addSubview:self.tableView];
}
#pragma mark - tableview datasource
//将第一问删除,就会默认一个section
//第二问:
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 15;
}
#pragma mark - tableview delegate
//第三问
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *ID=@"cell";
//去队列中获取可用的cell
    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:ID];
    if (!cell) {//没有的话,就创建
        cell =[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    //设置cell的背景色
    cell.backgroundColor=[UIColor colorWithRed:0 green:0 blue:0 alpha:0.2];
    switch (indexPath.section) {
        case 0:
            cell.textLabel.text=HOURS;
            break;
        case 1:
            cell.textLabel.text=DAY;
            break;
    }
    return cell;
}
//----------------------------End-----------------------------------

自定的TableView的更多相关文章

  1. iOS高仿城觅应用客户端项目(开发思路和代码)

    这是一款非常完整的一个ios项目,基本实现了我们常用的一些功能了,而且界面设计个人感觉还是挺不错的,是一个不错的学习ios项目,喜欢的朋友可以参考一下吧. 项目展示,由于没有数据,所以所有的cell显 ...

  2. iOS高仿城觅-感谢大神分享

    项目展示,由于没有数据,所以所有的cell显示的都是我自己写的数据 抽屉 首页部分效果 首页效果 部分效果 发现 消息 搜索 设置 模糊效果 代码注释展示 代码注释展示 还有很多细节就不一一展示了,大 ...

  3. tableView中自定header视图的重用问题

    在UItableView中使用代理方发 - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger ...

  4. IOS 非常流畅的滑动tableView

    为什么要写这篇文章呢?之前写过一篇,因为手机打字不是很方便,还有之前同事用6splus 定下午茶时候,我滑动列表时候竟然误以为是安卓系统的手机.   tableview 流畅度可以用fps来测试,到6 ...

  5. [IOS Tableview] cell自定义view显示错误问题

    问题介绍:按照tableviewcell的tag自定义cell的view显示的时候,会出现拖动时显示错误情况(在Tableview的范围超出屏幕范围需要滑动的情况下). 我做的是一个下载界面,我为了简 ...

  6. iOS之下拉放大,上推缩小,一个方法搞定

    先来看看效果吧. 讲讲大概的实现思路:1、创建头部的视图和tableview,需要注意的是tableview要设置contentInset,contentInsent 的顶部要和头部视图的背景图的高度 ...

  7. ios8 tableView设置滑动删除时 显示多个按钮

      ** *  tableView:editActionsForRowAtIndexPath:     //设置滑动删除时显示多个按钮 *  UITableViewRowAction          ...

  8. DEV GridControl TableView隔行换色/奇偶行换色

    GridControl中的TableView“奇偶行换色”这件事情纠结了我好几天,虽然已经是上个月的事情,好歹记录一下吧,万一有谁要用到呢. GridControl是长这个样子的, <dxg:G ...

  9. iOS UIKit:TableView之表格创建(1)

    Table View是UITableView类的实例对象,其是使用节(section)来描述信息的一种滚动列表.但与普通的表格不同,tableView只有一行,且只能在垂直方向进行滚动.tableVi ...

随机推荐

  1. Android 使用 popupWindow实现弹层并操作弹层元素

    需求: 点页面,出现弹层,弹层包含EditText,Button等,点击Button实现提交操作: 最终代码: private PopupWindow popupWindow ; private Ed ...

  2. Mapreduce-Partition分析

    Partition所处的位置 Partition位置 Partition主要作用就是将map的结果发送到相应的reduce.这就对partition有两个要求: 1)均衡负载,尽量的将工作均匀的分配给 ...

  3. write & read a MapFile(基于全新2.2.0API)

    write & read a  MapFile import java.io.IOException; import org.apache.hadoop.io.IntWritable; imp ...

  4. ☀【window.self / window.parent / window.top】

    Js中的window.parent ,window.top,window.self 详解 √http://blog.csdn.net/zdwzzu2006/article/details/604763 ...

  5. 《C#并行编程高级教程》第5章 协调数据结构 笔记

    本章介绍了一些轻量级的同步原语,其中有很大部分是.NET Framework 4才引入的. System.Threading.Barrier 用于一段程序分成多个阶段,每个阶段的开始都需要之前的阶段完 ...

  6. 【原】CAVLC的个人理解

    4x4数据块经过预测.变换.量化后,非零系数主要集中在低频部分,而高频部分大部分是零.数据经过zig-zag扫描后,从左->右(低频->高频),DC系数附近的系数非常大,而高频的非零系数大 ...

  7. (转载)Excel文档保存的时候,提示“文档未保存”

    亲测,成功搞定 Excel文档保存的时候,提示“文档未保存”? 先打开你需要处理的excel,然后打开工具栏--宏--录制新宏--确定--停止录制宏--宏-宏--编辑--复制以下程序Sub 恢复保存( ...

  8. 各种sensor名称统计

    gyroscopes 陀螺仪accelerometers 加速度计magnetometers 磁力计barometric pressure 气压remote pressure sensing 远程压力 ...

  9. HW3.7

    import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner i ...

  10. HW3.2

    import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner i ...