博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS UI 07 uitableview
阅读量:6364 次
发布时间:2019-06-23

本文共 2141 字,大约阅读时间需要 7 分钟。

//

//  RootViewController.m

//  ui - 07

//

//  Created by dllo on 15/11/18.

//  Copyright (c) 2015 dllo. All rights reserved.

//

#import "RootViewController.h"

@interface RootViewController () <UITableViewDataSource, UITableViewDelegate>

@end

@implementation RootViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    self.view.backgroundColor = [UIColor whiteColor];

    

    

    UITableView *table = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStylePlain];

    table.delegate = self;

    table.dataSource = self;

    [self.view addSubview:table];

    [table release];

    

    

    

    

    

    

    

    

    

    // Do any additional setup after loading the view.

}

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

{

    static NSString *cellstr = @"cell";

    UITableViewCell *Cell = [tableView dequeueReusableCellWithIdentifier:cellstr];

    if (nil == Cell) {

        Cell = [[[UITableViewCell alloc]initWithStyle:   UITableViewCellStyleValue1 reuseIdentifier:cellstr] autorelease];

//            Cell.textLabel.text = @"18733324546";

            Cell.imageView.image =[UIImage imageNamed:@"1.png"];

        

    }

    if (1 == indexPath.section && 0 == indexPath.row) {

        Cell.textLabel.text = @"大哥";

        Cell.detailTextLabel.text = @"138847";

    }

    

        return Cell;

}

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

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

{

    return 5;

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

    return 3;

}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

{

    if (section == 0) {

        return @"A";

    }

    if (section == 1) {

        return @"B";

    }

    return @"c";

}

/*

#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

    // Get the new view controller using [segue destinationViewController].

    // Pass the selected object to the new view controller.

}

*/

@end

转载于:https://www.cnblogs.com/yuhaojishuboke/p/5043084.html

你可能感兴趣的文章
我的友情链接
查看>>
我的友情链接
查看>>
monkeyrunner运行Python脚本来检查apk渠道和验证是否可以调用微信
查看>>
github获得SSH Key解决Permission denied (publickey)问题
查看>>
用java代码编写Oracle存储过程
查看>>
APACHE转发
查看>>
windows 实现转发DNAT
查看>>
安装永中Office for linux
查看>>
龙芯jdk或java开发
查看>>
mysqldump备份还原
查看>>
android-market-api
查看>>
解決 yum update錯誤:[Errno -1] Metadata file does not match checksum
查看>>
初探磁盘阵列
查看>>
jQuery实现自定义checkbox和radio样式
查看>>
Log4j2之Appenders
查看>>
我的家庭私有云计划-20
查看>>
SFTP开启日志
查看>>
HttpClientUtil-用于后台发起请求
查看>>
ASP.NET(C#)Excel导入Dataset的出现数据值丢失问题
查看>>
我的友情链接
查看>>