我正在尝试创建一个具有 3 个自定义按钮和标签的 tableView,我有 12 个图像,相当于 4 行,每行 3 个按钮。现在的代码现在显示所有行中的前 3 个图像,我想要所有 12 个按钮中的所有 12 个图像。
所以每个按钮都需要有一个图像和一个与其他按钮不同的标签。
有人可以帮我创建这个吗,这是我到目前为止的代码 编辑格式
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
btnImages = [[NSMutableArray alloc] initWithObjects:@"dog1.png",@"dog2.png",@"dog3.png",@"dog4.png",@"dog5.png",@"dog6.png"
@"dog7.png",@"dog8.png",@"dog9.png",@"dog10.png",@"dog11.png",@"dog12.png",nil];
for (int i = 0; i < 3; i++) {
//position the UiButtons in the scrollView
CGRect frame = CGRectMake((i*100) + 35, 35, 45, 45);
//Create the UIbuttons
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTag:i];
[button addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
button.frame = frame;
button.clipsToBounds = NO;
button.contentMode = UIViewContentModeCenter;
//Add images to the button
UIImage *btnImg = [UIImage imageNamed:[btnImages objectAtIndex:i]];
[button setBackgroundImage:btnImg forState:UIControlStateNormal];
[cell.contentView addSubview:button];
}
return cell;
}