1

在我的主视图中,我有一个页眉(标签)和页脚(按钮)。中间有一张桌子。Table 从 MutableArray 获取数据,因此每次表项的数量都不同。

在表格之前和之后我有一些垂直空间(由约束设置),因为我想在页眉/页脚和表格之间留出一些空间。所以现在一张桌子分布在整个“中间”部分。还行吧。

我想要实现的是我不想将它传播到整个中间部分。我希望表格根据其内容调整大小。如果一张表只有一行,我想显示一行而不是空行。我试过这个:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {    

     int count = accController.connectedAccessories.count;

     [tableView setContentSize:CGSizeMake(tableView.contentSize.width, tableView.rowHeight * count)];
     return count;
}

但这不起作用。如果我在之后添加这一行setContentSize

tableView.frame = CGRectMake(tableView.frame.origin.x, tableView.frame.origin.y, tableView.frame.size.width, tableView.contentSize.height);

这可行,但如果我有很多项目,约束被打破并且表格超过了页脚。任何想法如何做到这一点?谢谢

编辑:这个页眉和页脚不是表格的一部分。我只是将标签(我称之为页眉)和按钮(页脚)放入主视图。在他们之间,我放了一张桌子。它看起来更适合我的目的。我称之为页眉和页脚,但它们是主视图的页眉/页脚,而不是表格......

4

4 回答 4

1

传递一个空白视图,因为 viewForFooterInSection 可能会对您有所帮助。

尝试这个 - -

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    UIView *view=[[UIView alloc] init];
    return view;
}
于 2013-08-02T09:28:15.707 回答
1

您必须尝试解决您的问题的代码

cell.selectionStyle=UITableViewCellSelectionStyleNone;

如果要向单元格添加背景图像,请使用此代码

cell.backgroundView = [[UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"image1.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:5.0] ];
于 2013-08-02T09:30:03.630 回答
1

请按照 .h 文件中的以下操作

@interface ViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>
{
    NSMutableArray *tempDataArray;
    UITableView *tblVIew;
}

@end

在 .m 文件中

#define cellHeight 30
#define headerHeight 50
#define footerHeight 50


@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    //[myMapView addAnnotation:(id<MKAnnotation>)];
    myScroll.hidden=YES;

    tempDataArray=[[NSMutableArray alloc] initWithObjects:@"Item1", nil];
    [self generateTableView];

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [tempDataArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier =@"Cell";
    UITableViewCell *cell = [tableView
                             dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
   }
    cell.textLabel.text=[tempDataArray objectAtIndex:indexPath.row];
    cell.textLabel.textAlignment=NSTextAlignmentCenter;

    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return cellHeight;
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return headerHeight;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    return footerHeight;
}


- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UILabel *lblHeader=[[UILabel alloc] initWithFrame:CGRectMake(50, 5, 200, 30)];
    [lblHeader setText:@"Header"];
    [lblHeader setBackgroundColor:[UIColor clearColor]];
    [lblHeader setFont:[UIFont systemFontOfSize:20]];
    [lblHeader setTextColor:[UIColor redColor]];
    [lblHeader setTextAlignment:NSTextAlignmentCenter];
    return lblHeader;
}
// custom view for header. will be adjusted to default or specified header height
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    CGRect frame = CGRectMake(10, 5, 220, 40);
            UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
            button.frame = frame;
            [button setTitle:(NSString *)@"Footer" forState:(UIControlState)UIControlStateNormal];
    [button setTintColor:[UIColor blackColor]];

            [button addTarget:self action:@selector(buttonTapped:) forControlEvents:UIControlEventTouchUpInside];
            [button setBackgroundImage:[UIImage imageNamed:@"temp1.png"] forState:UIControlStateNormal];
        //[button setBackgroundColor:[UIColor whiteColor]];
            [myScroll addSubview:button];
    return button;
}
// custom view for footer. will be adjusted to default or specified footer height

-(void)buttonTapped:(id)sender
{
    // code for redirecting to another view
   // use button tag property for identifying perticular record
    [self generateTableView];
}

-(void)generateTableView
{
    tblVIew=nil;
    [tblVIew removeFromSuperview];

    [tempDataArray addObject:@" new item"];
    tblVIew=[[UITableView alloc] initWithFrame:CGRectMake(40, 50, 220,(cellHeight *[tempDataArray count])+headerHeight+footerHeight)];
    tblVIew.delegate=self;
    tblVIew.dataSource=self;
    [self.view addSubview:tblVIew];
    [tblVIew reloadData];
}

我希望这能帮到您。

于 2013-08-02T10:27:04.947 回答
0

试试下面的代码。我希望它可以帮助你

 -(void)viewDidLoad
{
   tableView.frame = CGRectMake(tableView.frame.origin.x, tableView.frame.origin.y, tableView.frame.size.width, tableView.contentSize.height);
   [tableView reloadData];
   tableView.frame = CGRectMake(tableView.frame.origin.x, tableView.frame.origin.y, tableView.frame.size.width, [self tableViewHeight] );

}
- (CGFloat)tableViewHeight
{
    [_tableView layoutIfNeeded];
    return [_tableView contentSize].height;
}
于 2013-08-02T09:31:00.907 回答