我有 customtableview 单元格。在 viewController 中,我想在放置在自定义单元格中的 UIlabel 中添加选取框效果。选框工作完美,但我无法设置自定义单元格标签。cell.uiprodname.text是自定义单元格的标签。我的代码是
MarqueeLabel *Label2 = [[MarqueeLabel alloc] initWithFrame:CGRectMake(10, 100, self.view.frame.size.width-20, 20) rate:100.0f andFadeLength:10.0f]; <= here i want to set cell.uiprodname.text instead of cgrect.
Label2.font = [UIFont fontWithName:@"Helvetica-Bold" size:15.000];
Label2.text = cell.uiprodname.text;
[self.view addSubview:Label2];
我想要每个自定义单元格内的选框效果。