如何创建具有多个行和多个列的tableview?(How do I create a tablevi

2019-09-16 11:49发布

我知道如何创建与单个列和多行的tableview,但我不知道如何创建具有多个行和多个列的tableview。

有谁能够帮助我?

Answer 1:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  static NSString *cellIdentifier = @"MyCell";

  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
  if (cell == nil) {
    // load cell from nib to controller's IBOutlet
    [[NSBundle mainBundle] loadNibNamed:@"MyTableCellView" owner:self options:nil];
    // assign IBOutlet to cell
    cell = myCell;
    self.myCell = nil;
  }

  id modelObject = [myModel objectAtIndex:[indexPath.row]];

  UILabel *label;
  label = (UILabel *)[cell viewWithTag:1];
  label.text = [modelObject firstField];

  label = (UILabel *)[cell viewWithTag:2];
  label.text = [modelObject secondField];

  label = (UILabel *)[cell viewWithTag:3];
  label.text = [modelObject thirdField];

  return cell;
}

我觉得这个代码将有助于您的UITableView没有真正专为多列。 但是你可以通过创建自定义UITableCell类模拟列。 建立在Interface Builder您的自定义单元格,然后为每个列元素。 给每个元素的标记,以便你可以在你的控制器引用它。

给你的控制器的电源插座上加载从笔尖细胞:

@property(nonatomic,retain)IBOutlet UITableViewCell *myCell;

然后,在你的表视图委托的方法的cellForRowAtIndexPath,通过标签分配这些值。



Answer 2:

这是我做的:

#import <Foundation/Foundation.h>

  @interface MyTableCell : UITableViewCell 

{   
NSMutableArray *columns;
 }

- (void)addColumn:(CGFloat)position;

@end

执行:

#import "MyTableCell.h"

#define LINE_WIDTH 0.25

@implementation MyTableCell

- (id)init
{
self = [super init];
if (self) {
    // Initialization code here.
}

return self;
}

 - (void)addColumn:(CGFloat)position 
{
[columns addObject:[NSNumber numberWithFloat:position]];
 }

- (void)drawRect:(CGRect)rect 
{
CGContextRef ctx = UIGraphicsGetCurrentContext();
// Use the same color and width as the default cell separator for now
CGContextSetRGBStrokeColor(ctx, 0.5, 0.5, 0.5, 1.0);
CGContextSetLineWidth(ctx, LINE_WIDTH);

for (int i = 0; i < [columns count]; i++)
{
    CGFloat f = [((NSNumber*) [columns objectAtIndex:i]) floatValue];
    CGContextMoveToPoint(ctx, f, 0);
    CGContextAddLineToPoint(ctx, f, self.bounds.size.height);
}

CGContextStrokePath(ctx);

[super drawRect:rect];
}

@end

最后一块,的cellForRowAtIndexPath

MyTableCell *cell = (MyTableCell *)[rankingTableView dequeueReusableCellWithIdentifier:MyIdentifier];
cell              = [[[MyTableCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];


文章来源: How do I create a tableview with multiple rows and multiple columns?