我拿了一个滚动视图,我正在动态添加标签,看起来像这样
for(int tempvariable=0; tempvariable<n;tempvariable++)
{
CGRect labelFrame2 = CGRectMake( x3,y3, 20, 20 );
UILabel *label3=[[UILabel alloc]initWithFrame:labelFrame2];
[subview addSubview:label3];
}
[self.scrollView addSubview:subview];
"n"
是将标签n次添加到子视图后的动态值我已将子视图添加到滚动视图。现在我想打印滚动视图上所有标签的标题NSLog(@'");
如果我想更改一些标签的标题,我怎么能只通过没有子视图的滚动视图来做到这一点?