merkezine sığacak şekilde ayarlama Metni, UILabel
boyutuna uyacak şekilde ayarlamaya çalışıyorum ve ayrıca ortalanacağım. Bunu programlı olarak yapıyorum. Bu şu anda neye benzediği: Gördüğünüz gibi, metin ekranın dışına gidiyor ve ayrıca merkezde olmasaMetni UILabel boyutuna ve SWIFT
.
let questions = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac faucibus tellus."
questionsLabel = UILabel(frame: CGRectMake(10, 10, questionsView.frame.size.width - 20, 80))
questionsLabel.text = questions
questionsLabel.font = UIFont(name: Font.FuturaMedium, size: 25)
questionsLabel.sizeToFit()
questionsLabel.numberOfLines = 0
questionsLabel.textAlignment = NSTextAlignment.Center
questionsView.addSubview(questionsLabel)
yanlış yapıyorum:
Bu benim kodudur?