2. Swift UILabel
페이지 정보
작성자 관리자 댓글 0건 조회 4,063회 작성일 19-11-04 20:51본문
2. Swift UILabel
사용자의 입력이 없는 field, 긴문장이 아니라 짧은 문장에 적합하다.
func viewDidLoad() {
var testRect = CGRect(x: 50, y:50, width: 200, height:30)
var testLabel: UILabel = UILabel(frame: testRect)
//testLabel.backgroundColor = UIColor.red
testLabel.text = "테스트 라벨입니다.\n안녕하세요"
textLabel.textColor = UIColor.blue
textLabel.numberOfLine = 2 // 여러줄일 때 줄수를 지정한다.
testLabel.font = UIFont.systemFont(ofSize: 20) // 시스템폰트 사용
self.view.addSubView(testLabel)
}
댓글목록
등록된 댓글이 없습니다.