gpt4 book ai didi

iphone - 在 'Music' 应用程序中在 UITableView 中创建一个部分

转载 作者:行者123 更新时间:2023-11-28 20:35:07 26 4
gpt4 key购买 nike

如何在 iOS 的“音乐”应用中为每一行创建一个数字 1、2、3 的 UITableView 部分?提前致谢!

enter image description here

最佳答案

您可以子类化 UITableViewCell 并创建一个 subview UIlabel 属性,比如..trackNumber 并在您的 cellForRowAtIndex.. 方法中初始化您的自定义单元格。

编辑:添加示例

   //CustomCell.h
@interface CustomCell : UITableViewCell

@property(nonatomic,retain) UILabel *trackNumber;

@end

//CustomCell.m
@implementation CustomCell
@synthesize trackNumber;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
self.trackNumber = [[[UILabel alloc] initWithFrame:CGRectMake(5,5,40,40)] autorelease];
[self addSubview:self.trackNumber];
}
return self;
}


@end

在您的实现中使用 #import "CustomCell.h"

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


CustomCell *cell = (CustomCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {

cell = [[[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

}

cell.trackNumber.text = [NSString stringWithFormat:@"%i",[indexPath row]];

// Configure the cell.
return cell;
}

关于iphone - 在 'Music' 应用程序中在 UITableView 中创建一个部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10841981/

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