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

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

iOStableView的用法-創(chuàng)新互聯(lián)

- (void)viewDidLoad

為行唐等地區(qū)用戶(hù)提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及行唐網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都網(wǎng)站制作、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、行唐網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專(zhuān)業(yè)、用心的態(tài)度為用戶(hù)提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶(hù)的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!

{

  [super viewDidLoad];

   UITableView *myTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, Screen_width, Screen_height)style:UITableViewStylePlain];

//  UITableViewStyleGrouped分組

  myTableView.dataSource = self;

  myTableView.delegate = self;

  [self cancelCell:myTableView];

  [self.view addSubview:myTableView];

     // Do any additional setup after loading the view,;typically from a nib.

}

#pragma mark-once 行數(shù)

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

{

   return 3;

}

#pragma mark-once 行內(nèi)容

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

{

   static NSString *cellID = @"cellID";

   UITableViewCell *cell = [tableViewdequeueReusableCellWithIdentifier:cellID];

   if(cell==nil)

  {

    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];

  }

   //UITableViewCellStyle      是個(gè)枚舉

   //UITableViewCellStyleDefault;  默認(rèn)的

   //UITableViewCellStyleSubtitle;

   //UITableViewCellStyleValue1;

   //UITableViewCellStyleValue2;

  cell.textLabel.text = [NSString stringWithFormat:@"%ld",(long)indexPath.row];

   //給右邊加個(gè)標(biāo)識(shí)符的

  cell.accessoryType =UITableViewCellAccessoryDisclosureIndicator;

   //選中的顏色

  cell.selectionStyle = UITableViewCellSelectionStyleBlue;

   return cell;

}

#pragma mark-once 幾組

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;

{

   return 2;

}

#pragma mark-once頭標(biāo)題

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

{

  return @"第一個(gè)標(biāo)題";

}

#pragma mark-once未標(biāo)題

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

{

   return @"最后一個(gè)標(biāo)題";

}

#pragma mark-once標(biāo)識(shí)符accessoryButtonTappedForRow方法

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath

{

}

#pragma mark-once類(lèi)似電話那種最右邊的 a,b,c,d,e-z

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView

{

   NSArray *rightArry = @[@"A",@"B",@"c",@"d",@"e",@"f",@"g"];

   return rightArry;

}

#pragma mark-once行高

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

{

   return 50;

}

#pragma mark-once頭標(biāo)題的高度

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

{

   return 50;

}

#pragma mark-once未標(biāo)題的高度

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

{

   return 50;

}

#pragma mark-once行高

-(void)cancelCell:(UITableView *)tableView

{

   UIView *view = [UIView new];

  view.backgroundColor = [UIColor clearColor];

  [tableView setTableFooterView:view];

  view.frame = CGRectMake(0, 0, tableView.frame.size.width, 20);

}

#pragma mark-once 選中的方法

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

   NSLog(@"%ld",(NSInteger)indexPath.row);

}

#pragma mark-once編輯的方法

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath

{

   return YES;

}

#pragma mark-once是否允許移動(dòng)

- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath

{

   return YES;

}

#pragma mark-once 編輯的方法

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

{

}

#pragma mark-once 移動(dòng)的方法

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath*)destinationIndexPath

{

}

#pragma mark-once 分割線

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{

   if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) {

    [tableView setSeparatorInset:UIEdgeInsetsZero];

  }

   if ([tableView respondsToSelector:@selector(setLayoutMargins:)]) {

    [tableView setLayoutMargins:UIEdgeInsetsZero];

  }

   if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {

    [cell setLayoutMargins:UIEdgeInsetsZero];

  }

}

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。


分享文章:iOStableView的用法-創(chuàng)新互聯(lián)
標(biāo)題網(wǎng)址:http://weahome.cn/article/ppoph.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部