我们如何为ios设置UITextField和UILabel的上边距,左边距。我使用此代码用于表视图的自定义标题。我想要上边距28px和左边距335px。
UILabel *sets = [[UILabel alloc] initWithFrame:CGRectMake(260, 10, 130, 20)];
sets.text = @"Sets";
sets.textColor=[UIColor colorWithRed:252.0/255 green:53.0/255.0 blue:55.0/255.0 alpha:1];
;
[sets setFont:[UIFont fontWithName:@"Helvetica neue Regular" size:6.0]];
sets.tag = 3;
[headerView addSubview:sets];
答案 0 :(得分:0)
将您的框架设置为CGRectMake(335.0, 28.0, your_width, your_height)
,并将标签添加为标题的子视图,就像您现在一样。或者,您可以创建约束。