真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

UI中的表視圖用法-創(chuàng)新互聯(lián)

- (void)viewDidLoad {

專注于為中小企業(yè)提供做網(wǎng)站、成都做網(wǎng)站服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)襄汾免費做網(wǎng)站提供優(yōu)質(zhì)的服務。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了成百上千企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。

 

  [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;

}


創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務器,動態(tài)BGP最優(yōu)骨干路由自動選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡助力業(yè)務部署。公司持有工信部辦法的idc、isp許可證, 機房獨有T級流量清洗系統(tǒng)配攻擊溯源,準確進行流量調(diào)度,確保服務器高可用性。佳節(jié)活動現(xiàn)已開啟,新人活動云服務器買多久送多久。


當前文章:UI中的表視圖用法-創(chuàng)新互聯(lián)
網(wǎng)頁鏈接:http://weahome.cn/article/dihhcg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部