美文网首页
iOS~表格

iOS~表格

作者: Wang99 | 来源:发表于2017-09-19 14:04 被阅读0次
                                                        //设置代理
    @interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
    {
        UITableView *_tableView;
        NSMutableArray *_arr;
    }
    @end
    
    @implementation ViewController
    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
        
        _tableView = [[UITableView alloc]initWithFrame:self.view.bounds];
        _tableView.delegate = self;
        _tableView.dataSource = self;
        [self.view addSubview:_tableView];
        
        _arr = [NSMutableArray arrayWithObjects:@"1",@"2",@"3",@"4", nil];
    }
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
        
        return _arr.count;
    }
    
    
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *cellID = @"cellID";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
        if (!cell) {
            cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID];
        }
        cell.textLabel.text = _arr[indexPath.row];
        return cell;
    }
    

    相关文章

      网友评论

          本文标题:iOS~表格

          本文链接:https://www.haomeiwen.com/subject/ryvwsxtx.html