gpt4 book ai didi

iphone - 将 UIButton 添加到 UItableview 单元格

转载 作者:行者123 更新时间:2023-12-01 19:21:26 26 4
gpt4 key购买 nike

我有一个包含 3 个部分的分组 TableView ,我想为每个部分添加不同的按钮,我在第一部分有 5 个单元格,我想在第二个单元格中只添加 3 个取消按钮,第三个和第四个单元格。我的代码看起来像这样

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 3;
}


// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if(section == 0)
return [_arayfirstrow count];
else if(section == 1)
return [_arraysecondrow count];
else if(section == 2)
return [_arraythirdrow count];
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";
// static NSUInteger nTag = 100;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
cell.textLabel.font = [UIFont fontWithName:@"Georgia"size:20.0];



}

// Set up the cell...
if(indexPath.section == 0){
cell.textLabel.text = [_arayfirstrow objectAtIndex:indexPath.row];
NSString *imageName = [_arayfirstrowimg objectAtIndex:indexPath.row];
cell.imageView.image = [UIImage imageNamed:imageName];

**//when i add below code for inserting button on the first section ,it successfully adds the button,but i don't need button for 1st and 5th cell..ans also it crashes when i tap the button for 2 or three time**

CGRect buttonRect = CGRectMake(210, 25, 65, 25);
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = buttonRect;
// set the button title here if it will always be the same
[button setTitle:@"Action" forState:UIControlStateNormal];
button.tag = 1;
[button addTarget:self action:@selector(myAction:) forControlEvents:UIControlEventTouchUpInside];

[cell.contentView insertSubview:button atIndex:0];



// [usernamebutton release];

}else if(indexPath.section == 1){
cell.textLabel.text = [_arraysecondrow objectAtIndex:indexPath.row];
}
else if(indexPath.section == 2)
{
cell.textLabel.text = [_arraythirdrow objectAtIndex:indexPath.row];

}
return cell;
}

有没有办法解决这个问题。
提前致谢。

最佳答案

你可以这样尝试:

if(indexPath.section == 0)
{
if(indexPath.row == 1||indexPath.row == 2||indexPath.row == 3)
{
CGRect buttonRect = CGRectMake(210, 25, 65, 25);
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = buttonRect;
// set the button title here if it will always be the same
[button setTitle:@"Action" forState:UIControlStateNormal];
button.tag = 1;
[button addTarget:self action:@selector(myAction:) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubView:button atIndex:0];
}
}

有没有定义方法 myAction: ?如果没有,它可能会使您的应用程序崩溃。

关于iphone - 将 UIButton 添加到 UItableview 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10229597/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com