我有3个属性的Audio类: 艺术家,标题和持续时间。正如你所看到的(截图)我已经成功地放了2个道具。 如果可能的话,如何将持续时间放入UITableViewCell,我写了“持续时间”?
铁木尔
这里是截图
答案 0 :(得分:2)
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:...............
UILabel *durationLabel =[[UILabel alloc]initWithFrame:CGRectMake(250,12 , 60,20 )];
durationLabel.textColor = [UIColor blueColor];
durationLabel.backgroundColor =[UIColor clearColor];
durationLabel.tag=55;
[cell.contentView addSubview:durationLabel];
[durationLabel release];
}
UILabel *label=(UILabel*)[cell.contentView viewWithTag:55];
label.text = @"vijay";