在哪里可以找到在每个UITableCell中添加UIButton的示例

时间:2010-06-09 05:02:41

标签: uibutton

哪里可以找到在每个UITableCell中添加UIButton的示例?

1 个答案:

答案 0 :(得分:0)

您需要为UIbutton创建addSubView和jus cell才能正常使用。

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
     static NSString *CellIdentifier = @"Cell";
        UIImageView * accerTypeImage;
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
        }

        UIButton *button = [[UIButton allo] init];
        button.frame = //give the frame in UITableViewCell.
        button.tag = indexPath.row;
        [cell addSubView:button];
        [button release];
return cell;

        }