3

我知道如何创建一个单列多行的表格视图,但我不知道如何创建一个多行多列的表格视图。

有谁能够帮助我?

4

2 回答 2

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];
于 2012-04-12T07:16:00.663 回答
0
-(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 方法中,按标签分配这些值。

于 2012-04-12T10:45:21.123 回答