总结一下tableView的知识点1.tableView的创建 //tableView的创建 //1.初始化 UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain]; //2.设置属性(行高, 分割线, 表头, 表尾) tableView.rowHeight = 60; //UITableViewCellSeparatorStyleSingleLine(默认) tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine; tableView.separatorColor = [UIColor redColor]; tableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0); tableView.backgroundColor = [UIColor grayColor]; UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 375, 30)]; headerLabel.text = @"IOS应用排行榜"; headerLabel.textAlignment = NSTextAlignmentCenter; tableView.tableHeaderView = headerLabel;//表头,需要先创建一个Label,然后把创建好的Label赋给表头表尾 [headerLabel release]; //通过表尾可以清除多余分割线 //tableView.tableFooterView = [[[UIView alloc] init] autorelease]; //设置是否允许多选 tableView.allowsMultipleSelection = YES; //3. 添加父视图 [self.view addSubview:tableView]; //4. 释放 [tableView release];
时间: 2024-10-13 20:00:44