亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

UI中的表視圖用法

發布時間:2020-07-13 19:02:13 來源:網絡 閱讀:341 作者:ladispartion1 欄目:開發技術

- (void)viewDidLoad {

    

    [super viewDidLoad];

    self.data = @[@"Camping", @"Water Skiing", @"Weight Lifting", @"Stamp Collecting"];

    

    

    UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 20, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height - 20) style:UITableViewStylePlain];

    tableView.delegate = self;

    tableView.dataSource = self;

    

    

    // 設置表視圖的頭部視圖

    UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 50)];

    UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(([UIScreen mainScreen].bounds.size.width - 130)/2, 0, 150, 50)];

    label.text = @"HeaderFooter";

    label.textColor = [UIColor whiteColor];

    [headerView addSubview:label];

    headerView.backgroundColor = [UIColor cyanColor];

    tableView.tableHeaderView = headerView;


    [self.view addSubview:tableView];

    

}

#pragma mark -UITableViewDataSource 



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

    return self.data.count;

    

}

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

    UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];

    cell.textLabel.text = (NSString *)self.data[indexPath.row];

    return cell;

}



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

    return  @"Johnny Appleseed";

}

- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{

    return @"wrewrwer";

}

//自定義section頭部視圖

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{

    UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0,0, 120)];

    view.backgroundColor = [UIColor grayColor];

    UIImageView *imgView = [[UIImageView alloc]initWithFrame:CGRectMake(10, 20, 70, 70)];

    imgView.backgroundColor = [UIColor lightGrayColor];

    imgView.p_w_picpath = [UIImage p_w_picpathNamed:@"home_tab_icon_4.png"];

    [view addSubview:imgView];

    UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(85, 20, 200, 70)];

    label.font = [UIFont boldSystemFontOfSize:16];

    label.text = @"Johnny Appleseed";

    UILabel *label1 = [[UILabel alloc]initWithFrame:CGRectMake(10, 80, 200, 50)];

    label1.text = @"Hobby Information:";

    [view addSubview:label1];

    [view addSubview:label];

        return view;

}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{

    

    //添加view

    UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, 100)];

    view.backgroundColor = [UIColor grayColor];

    //btn1

    UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeCustom];

    btn1.frame = CGRectMake(([UIScreen mainScreen].bounds.size.width - 240)/3, 30, 120, 40);

    [btn1 setTitle:@"Button1" forState:UIControlStateNormal];

    [btn1 setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];

    btn1.backgroundColor = [UIColor whiteColor];

    [view addSubview:btn1];

    

    //添加btn2

    UIButton *btn2 = [UIButton buttonWithType:UIButtonTypeCustom];

    btn2.frame = CGRectMake(([UIScreen mainScreen].bounds.size.width - 240)/3 *2 + 120, 30, 120, 40);

    [btn2 setTitle:@"Button1" forState:UIControlStateNormal];

    [btn2 setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];

    btn2.backgroundColor = [UIColor whiteColor];

    [view addSubview:btn2];


    return view;

}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

    return 120;

}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

    return 100;

}



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

固阳县| 唐河县| 如东县| 苗栗市| 金川县| 治多县| 大新县| 襄樊市| 龙游县| 长子县| 都兰县| 余干县| 靖江市| 灵台县| 蒙山县| 额济纳旗| 镇原县| 宜阳县| 凤冈县| 牙克石市| 施甸县| 扬中市| 慈利县| 怀安县| 上蔡县| 嘉禾县| 会理县| 凭祥市| 桑植县| 保靖县| 玉山县| 晋江市| 盐城市| 武安市| 五原县| 阜平县| 灵石县| 九龙城区| 汉沽区| 大足县| 栖霞市|