谁能告诉我如何为我添加到 UITableView Cell 上的视图添加两个标签。我已经将该视图创建为具有某些名称的 UIView。我在 UIView 类中创建了两个标签,并为标签设置框架,设置文本和etc.my 的问题是在 tableview 单元格中获取该视图,但不是那些标签。
countLabel.text = @"4";
countLabel.frame=CGRectMake(275, 10, 20, 15);
countLabel.font=[UIFont boldSystemFontOfSize:15.0];
countLabel.textColor=[UIColor colorWithWhite:0.0 alpha:0.5];
countLabel.backgroundColor=[UIColor clearColor];
hrsLabel.text = @"Hours";
hrsLabel.frame=CGRectMake(260, 30, 45, 15);
hrsLabel.font=[UIFont boldSystemFontOfSize:15.0];
hrsLabel.textColor=[UIColor colorWithWhite:0.0 alpha:0.5];
hrsLabel.backgroundColor=[UIColor clearColor];
这只是我正在设置框架,文本到 UIView 中的标签。
GreenView *greenView = [[GreenView alloc] initWithFrame:CGRectMake(250, 8, 60, 50)];
greenView.backgroundColor = [UIColor colorWithRed:0.000 green:0.690 blue:0.313 alpha:0.5];
[cell.contentView addSubview:greenView];
在这里,我将该 UIView 添加到 tableview 单元格。我不知道如何将这些标签添加到我的 UIView。请帮我。
抱歉,如果英语有任何错误。任何人请帮助我。提前非常感谢。