欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

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

- (void)viewDidLoad {

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

 

 

  // 設(shè)置表視圖的頭部視圖

  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,專(zhuān)業(yè)提供香港、美國(guó)云服務(wù)器,動(dòng)態(tài)BGP最優(yōu)骨干路由自動(dòng)選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨(dú)有T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動(dòng)現(xiàn)已開(kāi)啟,新人活動(dòng)云服務(wù)器買(mǎi)多久送多久。

新聞標(biāo)題:UI中的表視圖用法-創(chuàng)新互聯(lián)
路徑分享:http://aaarwkj.com/article26/dihhcg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)公司、電子商務(wù)、小程序開(kāi)發(fā)、面包屑導(dǎo)航、定制開(kāi)發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化
开心五月婷婷六月丁香| 99精品人妻一区二区三区蜜桃| 九九在线精品视频免费| 日本在线电影一区二区三区| 日韩欧美亚洲自拍另类| 日本精品在线亚洲国产欧美| 91九色国产成人久久精品| 国产欧美日韩亚洲精品区| 欧洲女人av天堂精品| 免费久久人人爽人人爽| 婷婷六月亚洲中文字幕| 久久综合亚洲一区二区三区色| av网址在线免费观看| 欧亚日韩精品一区二区在线| 日韩av综合色区人妻| 欧美一区二区日本国产激情| 变态另类专区一区二区三区| 日本东京一区二区三区| 国产无遮挡的免费视频| 黄色片黄色片美女黄色片亚洲黄色片| 午夜福利日本一区二区| 国产三级精品三级在线播放| 日韩中文字幕欧美国产| 青青草成年人免费视频| 日韩在线不卡一二三| 久久国产精品99亚洲| 亚洲av精二区三区四区| 日韩一区二区高清视频在线观看| 日韩激情中文字幕一区二区三区| 国产一区二区在线粉嫩| 黑人一区二区三区在线| av人妻熟女少妇蒂亚| 婷婷亚洲悠悠色悠在线| 日韩传媒在线观看视频| 欧美亚洲精品一区在线观看| 黄色黄色片黄色片黄色| 亚洲色图视频免费观看| 欧美一区二区三区va| av中文字幕一区二区三区| 免费观看亚洲视频一区二区三区| 黑人巨大亚洲一区二区久|