zoukankan      html  css  js  c++  java
  • 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);

    }

  • 相关阅读:
    青蛙学Linux—Nginx配置文件详解
    ICEM二维网格
    ubuntu画面延迟问题解决
    plot over time
    fluent中UDF环境变量问题的三种解决方法
    stiff chemistry模型出现NaN错误
    壁面边界漏给条件引起的发散问题
    mfix添加文件后重新生成configure文件
    DEM反应不收敛问题
    多气体组分DEM流动的DMP并行内存错误
  • 原文地址:https://www.cnblogs.com/xiangjune/p/4944798.html
Copyright © 2011-2022 走看看