UIScrollview中的多个表视图

时间:2012-12-27 14:31:36

标签: objective-c ios uitableview uiscrollview

我正在根据数组计数将多个tableview添加到scrollview中......代码在这里

int currentX = 3;
for(int i=0;i<[restNameArray count]; i++)
{

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    [button setFrame:CGRectMake(currentX, 0, 150, 35)];
    button.tag = i+1;
    //[button setUserInteractionEnabled:NO];
    [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
    [button setBackgroundImage:[UIImage imageNamed:@"ohris_applytics_ipad_middle_oc.png"] forState:UIControlStateNormal];
    button.titleLabel.font = [UIFont fontWithName:@"HelveticaNeue-CondensedBold" size:15.0f];
    [button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
    [button setTitle:[NSString stringWithFormat:@"%@", [restNameArray objectAtIndex:i]] forState:UIControlStateNormal];

    restaurantTable = [[UITableView alloc] initWithFrame:CGRectMake(currentX, 35, 150, 310) style:UITableViewStylePlain];
    [restaurantTable setTag:i+1];
    [restaurantTable setBackgroundColor:[UIColor whiteColor]];
    restaurantTable.delegate = self;
    restaurantTable.dataSource = self;
    [scrollView addSubview:button];
    [scrollView addSubview:restaurantTable];

    NSLog(@"tag %d",restaurantTable.tag);
    currentX = restaurantTable.frame.size.width+currentX+3;

    [tagArray addObject:[NSString stringWithFormat:@"%d", restaurantTable.tag]];
}
NSLog(@"aaaa %@", tagArray);
[scrollView setContentSize:CGSizeMake(currentX, 349)];

它在模拟器中显示正常。我需要用数组填充tableviews。 而cellforrowatindexpath的代码是

   if(tableView == restaurantTable){
    for (int i =0;i<[tagArray count];i++)
    {
      table1Array = [[[restSalesArray objectAtIndex:i]componentsSeparatedByString:@","]mutableCopy];

    NSLog(@"Sales array :%d %@", i, table1Array);
    cell.textLabel.text = [formatter stringFromNumber:[NSNumber numberWithInteger:[[table1Array objectAtIndex:indexPath.row]intValue]]];
    cell.textLabel.textAlignment = NSTextAlignmentCenter;
    }
}

但问题是,它只是在最后一个tableview中填充..剩下的都是空的... PLZ帮助我的人......

4 个答案:

答案 0 :(得分:3)

你正在尝试做什么。但是你要覆盖for循环中的restaurantTable变量。所以变量是最后一个表视图。您需要将它们添加到数组或单独的变量,以便能够与cellForRowAtIndexPath方法中的if进行比较。

_allTableViews在头文件中定义

你的循环

_allTableViews = [NSMutableArray array];  

for (.....) {
.
.
.
UITableView *tableView = [[UITableView alloc] initWith....];

.
.
.

[_allTableViews addObject tableView];
}

cellForRowAtIndePath

NSInteger tableIndex = [_allTableViews indexOfObject:tableView];
// Now you have the index of table view
switch (tableIndex) {
case 0:
// first table
break;
case 1:
// second table
break;
default:
break;
}

答案 1 :(得分:2)

您需要通过其插座名称或标记来比较每个tableView。

作为:

if(tableView == _restaurantTableOutlet){ 
    ...
}
else  if(tableView == _barTableOutlet){
    ...
}
else  if(tableView == _loungeTableOutlet){
    ...
}

答案 2 :(得分:0)

您正在将每个表视图存储到restaurantTable中,因此对先前表视图的引用将丢失。要么将它们全部存储在一个数组中,要么不存储它们中的任何一个

为什么要查看if(tableView == restaurantTable)?您应该按标签检查表并单独使用每个表

答案 3 :(得分:0)

您必须先为每个tableView分配标记。然后,您可以通过以下代码获取特定表的选定行: -

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    int tableTag = tableView.tag;
    if(tableTag==0)
    {
         //do something here
    }
    else if(tableTag==1)
    {
         //do something here
    }
}