IOS中的tableview

來源:互聯網
上載者:User

tableview

1.分組

2.plain(平面)

每行(UITableViewcell)

#import <UIKit/UIKit.h>@interface ViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>@property(nonatomic, retain)UITableView *table;@end

#import "ViewController.h"@interface ViewController ()@property (nonatomic,retain)NSArray *array;@end@implementation ViewController- (void)viewDidLoad{    [super viewDidLoad];// Do any additional setup after loading the view, typically from a nib.        self.array = [NSArray arrayWithObjects:@"one",@"two",@"three",@"four",@"five", nil];    UITableView *tableview = [[UITableView alloc] initWithFrame:CGRectMake(0,0,self.view.frame.size.width,self.view.frame.size.width ) Style:UITableViewStyleGrouped];    self.view = tableview;    //self.table.delegate = self;    self.table.dataSource =     [self.view addSubview:_table];    }-(void)viewDidAppear:(BOOL)animated{    [super didReceiveMemoryWarning];}- (void)didReceiveMemoryWarning{    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}#pragma mark UITableView 委託 and UITableView 資料來源// 返回具體節上有多少行- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    NSInteger i = 0;    if(section == 0){        i = 5;            }else if(section == 1){        i = 5;    }    return i;}// 返回tableview中有幾個分段(節)- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{    return  2;}// 繪製每一行-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    static NSString *CellID = @"MyCar";    UITableViewCell *cell = nil;    // 體現重用機制    cell = [tableView dequeueReusableCellWithIdentifier:CellID];    if (!cell) {        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellID];    }    if (indexPath.section==0) {        cell.textLabel.text = [_array objectAtIndex:indexPath.row];            }    //else if (indexPath)}@end

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.