<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">I often do the following:</div><div class=""><br class=""></div><div class="">let questionLabel:UILabel = {</div><div class="">&nbsp; &nbsp; let label = UILabel()<br class="">&nbsp; &nbsp;&nbsp;label.textAlignment = .Center<br class="">&nbsp; &nbsp;&nbsp;label.font = UIFont(name:"DnealianManuscript", size: 72)<br class="">&nbsp; &nbsp;&nbsp;label.text = currentQuestion.questionText<br class="">&nbsp; &nbsp;&nbsp;label.numberOfLines = 0<br class="">&nbsp; &nbsp; view.addSubview(label)</div><div class="">&nbsp; &nbsp; return label<br class="">}()<br class=""><br class=""></div><br class=""><div><blockquote type="cite" class=""><div class="">On Dec 6, 2015, at 3:59 AM, Adrian Zubarev via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><blockquote type="cite" class="clean_bq" style="margin: 15px 0px; font-family: Helvetica, Arial; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><span style="margin-top: 0px; margin-bottom: 0px;" class=""><div class=""><div class=""><div dir="ltr" class=""><div class=""><div class="">let questionLabel = UILabel() .{</div><div class="">&nbsp; &nbsp; ..textAlignment = .Center</div><div class="">&nbsp; &nbsp; ..font = UIFont(name:"DnealianManuscript", size: 72)</div><div class="">&nbsp; &nbsp; ..text = currentQuestion.questionText</div><div class="">&nbsp; &nbsp; ..numberOfLines = 0</div><div class="">&nbsp; &nbsp; view.addSubview($0)</div><div class="">}</div></div><div class=""><br class=""></div><div class="">Other thoughts?</div></div></div></div></span></blockquote></div></blockquote></div><br class=""></body></html>