我tag
为我的 UILabel 添加了 StoryBoard 属性检查器,并且在我的 ViewController.m 上有以下代码:
for (id subview in [[self view] subviews])
{
if (subview.tag==1)
{
[subview setFont:[UIFont fontWithName:@"Raleway-ExtraLight" size:12]];
} else if (subview.tag==2) {
[subview setFont:[UIFont fontWithName:@"Raleway-ExtraLight" size:28]];
}
}
当我运行我的代码时,我得到了这个错误:
在“const _strong id”类型的对象上找不到属性“标签”
我在这里错过了什么?谢谢你......