- (void)viewDidLoad
{
[super viewDidLoad];
objectiveLabel.text = objectstring;
objectiveLabel.lineBreakMode = UILineBreakModeWordWrap;
objectiveLabel.numberOfLines = 0;
[objectiveLabel sizeToFit];
vocabularyLabel.text = vocabularystring;
vocabularyLabel.lineBreakMode = UILineBreakModeWordWrap;
vocabularyLabel.numberOfLines = 0;
[vocabularyLabel sizeToFit];
}
有人能指出我如何讓標籤1推動或移動標籤2而不是重疊的正確方向嗎?阻止兩個UILabel彼此重疊
上下文?代碼片段? – 2012-07-24 00:17:33
您可能會發現在界面構建器中佈局UI更容易。蘋果有一些很棒的教程。 – 2012-07-24 01:18:31