반응형
위 스크린샷 처럼 Label 옆에 이미지를 넣고 싶은 경우 다음과 같이 구현하면 된다.
let attachment = NSTextAttachment()
attachment.image = UIImage(named: "new")
let attachmentString = NSAttributedString(attachment: attachment)
let contentString = NSMutableAttributedString(string: originalString)
contentString.append(attachmentString)
contentsLabel.attributedText = contentString
반응형
반응형
'Programer > iOS' 카테고리의 다른 글
[Tip] Apple MDM / 엔터프라이즈 계정 관련 (0) | 2018.02.05 |
---|---|
[Tip] iOS 기기 고유 식별 값을 사용하고 싶을 때 (UUID, App Groups) (0) | 2017.11.06 |
[Swift] 클로저 (Closure) (0) | 2017.02.28 |
[Swift] 이니시스 결재 모듈 관련 이슈 (아엠포트 소개, EUC-KR 인코딩 변경) (4) | 2016.12.01 |
[Swift] iOS앱 개발 전 반드시 알아야할 3가지 라이브러리 (0) | 2016.11.11 |