iphone tableView的使用(zz)

來源:互聯網
上載者:User

tableView的使用主要處理代碼
 
1.建立UIViewController頁面,雙擊xib檔案,開啟布局視圖
2.將Libery視圖中的Table View拖到view視窗
3.單擊view中的Tableview,control+F2,分別將dataSource和delegate和tableview fileowner關聯
4.在頁面中處理table資料顯示
 
//測試資料
   NSArray *listData;
    NSArray *arry=[[NSArray alloc]
                   initWithObjects:@"列表item1",@"列表item2",@"列表item3",@"列表item4"
                   ,nil
                   ];
    self.listData=arry;
    [arry release];
 
 
/*
  * 獲得 lsitview 的 size ,就是 listview 的行數
  * Get ListView size;
  */
-(NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section{
  return [self.listData count];
 
}
/********************
  * 開始迴圈畫 listview
  *Draw Listview
  *****************/
-(UITableViewCell *)tableView:(UITableView *)tableView
  cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  static NSString *SimpleTableIddentifier=@"SimpleTableIndentifier";//table 標誌符
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIddentifier];
  if(cell==nil){
  cell=[[[UITableViewCell alloc]
      initWithStyle: UITableViewCellStyleDefault        //table 風格
      reuseIdentifier:SimpleTableIddentifier           //table 標誌符
      ] autorelease];
  }
 
  // 為每行添加一個 tupian ,建議圖片資源預先處理好,直接調用,此處現取不建議
  UIImage *image =[UIImage imageNamed:@"green_dot.png"];
  cell.imageView.image=image;
  NSUInteger row=[indexPath row];
  cell.textLabel.text=[ listData objectAtIndex:row];    //此處匯入資料來源
  UILabel* cellLabel = [cell textLabel];
  [cellLabel setFont:[UIFont fontWithName:@"Marker Felt" size:20]];
  [cellLabel setTextColor:[UIColor whiteColor]];
  [cellLabel setBackgroundColor:[UIColor clearColor]];
 
  return cell;
 
}
/*
  處理 list 的選擇事件
  * Deal select index
  */
-(NSIndexPath *)tableView:(UITableView *)tableView
  willSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  NSInteger row =[indexPath row];
  tab_myZone_AlterInfor *alterPage;// 修改帳號資訊頁面定義
 
  switch (row) {
  case 0:
   // 擷取修改帳號資訊頁面
   alterPage=[[tab_myZone_AlterInfor alloc] initWithNibName: @"tab_myZone_AlterInfor" bundle:nil];
   self.alterInforPage=alterPage;
   [alterPage release];
   [self.navigationController pushViewController:self.alterInforPage animated:YES ];
   break;
  default:
   break;
  }
  return indexPath;
}

摘自 進階碼農的專欄

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.