Swift3에서 UILabel을 View의 중심에 배치하는 방법
설명
기본적으로 title.center = self.view.center
에서 센터로 설정하고 있습니다만 title.textAlignment = .center
가 빠지면 중간이 없어지므로 주의입니다.
구현
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let title = UILabel()
title.text = "真ん中だぜ"
title.frame = CGRect(x:50,y:50,width: 250,height:250)
title.textAlignment = .center
title.center = self.view.center
//title.center.x = self.view.center.x
//title.center.y = self.view.center.y
self.view.addSubview(title)
}
실행 결과
참고
How to center UILabel in Swift?
Swift3에서 UILabel을 View의 중심에 배치하는 방법
Reference
이 문제에 관하여(Swift3에서 UILabel을 View의 중심에 배치하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/rh_/items/7fc97f61970556748fe3
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let title = UILabel()
title.text = "真ん中だぜ"
title.frame = CGRect(x:50,y:50,width: 250,height:250)
title.textAlignment = .center
title.center = self.view.center
//title.center.x = self.view.center.x
//title.center.y = self.view.center.y
self.view.addSubview(title)
}
실행 결과
참고
How to center UILabel in Swift?
Swift3에서 UILabel을 View의 중심에 배치하는 방법
Reference
이 문제에 관하여(Swift3에서 UILabel을 View의 중심에 배치하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/rh_/items/7fc97f61970556748fe3
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
How to center UILabel in Swift?
Swift3에서 UILabel을 View의 중심에 배치하는 방법
Reference
이 문제에 관하여(Swift3에서 UILabel을 View의 중심에 배치하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/rh_/items/7fc97f61970556748fe3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)