• UITableView


        // 初始化VIEW

        UITableView *tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];

        tableView.dataSource = self;

        tableView.delegate = self;

        [self.view addSubview:tableView];

    // ****************实现委托   <UITableViewDataSource, UITableViewDelegate>

    // 总数

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

    {

        return _dataArra.count;

    }

    // 获取元素cell view

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

    {

        int indexPosition = indexPath.row;

        

        Person *person = [_dataArra objectAtIndex:indexPosition];

        

        //

        static NSString *identifyString = @"mytableview";

        

        UITableViewCell *cellView = [tableView dequeueReusableCellWithIdentifier:identifyString];

        

        if(!cellView)

        {

            cellView = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:identifyString];

        }

        cellView.textLabel.text = person.name;

        cellView.detailTextLabel.text = person.telPhone;

        

        return cellView;

    }

    // 行高

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

    {

        return 50;

    }

    // 点击事件响应

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

    {

        int index = indexPath.row;

        Person *person = [_dataArra objectAtIndex:index];

        

        NSLog(@"person name is : %@", person.name);

    }

  • 相关阅读:
    nxn随机矩阵乘以概率向量依旧是概率向量
    关于飞行器姿态计算
    两矩阵相乘后的秩
    关于矩阵A*b=A*c 中b是否等于c
    5.5节24题
    推论5.2.5
    js中function参数默认值
    陈经纶学校分析数据导出情况
    支付宝申请
    外国javascript资源搜索
  • 原文地址:https://www.cnblogs.com/xiangjune/p/4944798.html
Copyright © 2020-2023  润新知