91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

遵化市| 宁津县| 诸暨市| 商水县| 米脂县| 新晃| 庆阳市| 正安县| 勃利县| 汉中市| 松原市| 噶尔县| 南皮县| 会昌县| 大庆市| 龙陵县| 宝山区| 织金县| 扎赉特旗| 大英县| 湄潭县| 曲周县| 溧阳市| 郴州市| 金乡县| 扎赉特旗| 青田县| 绥芬河市| 宣化县| 岫岩| 江安县| 六盘水市| 莱芜市| 沂源县| 广灵县| 呼图壁县| 陕西省| 苍梧县| 贵德县| 溧水县| 巴南区|