2

我正在实现 UITableView 的概念,就像 gridView 一样。我在 UITableView 中加载 NSMutableArrays 数据。我在 tableViewCell 的 UIButtons 中加载数组项,当按下按钮时,应该执行一些操作..即每行 4 个按钮和行数取决于数组项的数量。我可以部分完成。我可以单击按钮,只要数组中有 8 个或少于 8 个项,按钮的下一步操作就会进行。但是当有更多项时然后我可以查看添加的按钮,但我无法单击按钮(即 -(IBAction)buttonPressed:(id)sender{ )没有响应..无法理解我哪里出错了..?

sections=[[NSMutableArray alloc] init];
        for(int s=0;s<1;s++)
        {
            NSMutableArray *section=[[NSMutableArray alloc] init];
            for(int i=0;i<[arr1 count];i++)
            {
                Item *item=[[Item alloc] init];
                NSString *eventName=[[arr1 objectAtIndex:i]objectForKey:@"Time"];

                item.Time=eventName;
                [section addObject:item];

            }
            [sections addObject:section];

        }
        tableView=[[UITableView alloc]initWithFrame:CGRectMake(0,430,320,200) style:UITableViewStylePlain];
        tableView.delegate = self;
        tableView.dataSource = self;
        [self.view addSubview:tableView];   
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1;
}

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSMutableArray *sectionItems=[sections objectAtIndex:indexPath.section];
    int numRows=[sectionItems count]/[arr1 count];
    return numRows * 80.0;
}

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

    UITableViewCell* hlcell=[tableView dequeueReusableCellWithIdentifier:hlCellID];

    if(hlcell == nil)
    {
        hlcell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault    reuseIdentifier:hlCellID]autorelease];

        hlcell.accessoryType = UITableViewCellAccessoryNone;
        hlcell.selectionStyle = UITableViewCellSelectionStyleNone;    
    }
    int section=indexPath.section;
    NSMutableArray *sectionItems=[sections objectAtIndex:section];
    int n=[sectionItems count];
    int i=0,i1=0;
    while(i<n)
    {
        int yy= 4+i1*34;
        int j=0;
        for(j=0;j<4;j++)
        {
            if(i>=n)break;
           Item *item=[sectionItems objectAtIndex:i];
            CGRect rect=CGRectMake(0+70*j,yy,79,40);
            UIButton *button=[[UIButton alloc] initWithFrame:rect];
            [button setFrame:rect];
            [button setContentMode:UIViewContentModeLeft];
            button.titleLabel.font = [UIFont systemFontOfSize:14];
            NSString *settitle=[NSString stringWithFormat:@"%@",item.Time];
            [button setTitle:settitle forState:UIControlStateNormal];
            NSString *tagValue=[NSString stringWithFormat:@"%d%d",indexPath.section+1,i];
            button.tag=[tagValue intValue];
            [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
            [button setShowsTouchWhenHighlighted:YES];     
            [button addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
           [hlcell.contentView addSubview:button];
            [button release];
            i++;




        }
        i1=i1+1;
    }
    return hlcell;

}



-(IBAction)buttonPressed:(id)sender
{

    int tagID=[sender tag];
    int divnum=0;
    if(tagID<100)
        divnum=10;
    else
        divnum=100;
    int section=[sender tag]/divnum;
    section-=1;
    int itemId=[sender tag]%divnum;


    NSMutableArray *sectionItems=[sections objectAtIndex:section];
    Item *item=[sectionItems objectAtIndex:itemId];

}
 In Item class I have NSString *Time;

我的数组是这样的:

(
        {
        Time = "9:00 am";
    },
        {
        Time = "9:15 am";
    },
        {
        Time = "9:30 am";
    },
        {
        Time = "9:45 am";
    },
        {
        TimeStart = "10:00 am";
    },
        {
        Time = "10:15 am";
    },
......24 objects in the array

![如何让所有按钮都被点击并响应 -(IBAction)][1]

4

4 回答 4

1

你可以试试这个这个

另一个 git 示例: 示例 希望对您有所帮助。

于 2012-11-21T13:04:21.040 回答
0

您可以创建 UILabel 并将它们添加到您的 tableview 并使用您的创造力以使其看起来像网格视图。

于 2013-01-14T10:10:16.637 回答
0

如果您的目标是 iOS 6,那么总会有 UICollectionView。文档教程

于 2012-11-21T13:44:36.363 回答
0

嗨,希望你得到你的答案,如果没有,那么请使用以下代码:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        int numRows=0;

        NSMutableArray *sectionItems = [sections objectAtIndex:indexPath.section];
        if ([sectionItems count]<5)
        {
              numRows = [sectionItems count]/1;
            numRows =numRows *152;

            NSLog(@"result less then 6 or zero");
        }
        else
        {
         numRows = [sectionItems count]/6;
            numRows =numRows *152.0;
        }
        //return numRows * 152.0;    //145
        return numRows;
    }

问题是当我们计算按钮的高度时。numRows = [sectionItems 计数]/1; 因此,根据您的需要管理这条线......

希望这对你有用...

于 2013-04-16T13:28:34.800 回答