Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 한글
- MacOS
- rxswift
- window
- 웹뷰
- iOS16
- Apple
- Xcode
- Git
- error
- Python
- IOS
- Notification
- Realm
- appstore
- Swift
- view
- JPA
- 개발자
- mac
- Session
- Code
- FLUTTER
- darkmode
- github
- UIButton
- SwiftUI
- Firebase
- Archive
- stack
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Swift ) AttributedString 에 이미지 넣기 - EEYatHo iOS 본문
반응형
줄바꿈을 어떻게 구현해야할지 고려하지 않고 손쉽게 이미지를 텍스트 옆에 넣을 수 있다.
attributedString 에 이미지를 넣는 것이다.
구현 ( with extension )
extension NSMutableAttributedString {
func appendImage(image: UIImage, bounds: CGRect) {
let imageAttachment = NSTextAttachment()
imageAttachment.image = image
imageAttachment.bounds = bounds
self.append(NSAttributedString(attachment: imageAttachment))
}
func insertImage(image: UIImage, bounds: CGRect, at: Int) {
let imageAttachment = NSTextAttachment()
imageAttachment.image = image
imageAttachment.bounds = bounds
self.insert(NSAttributedString(attachment: imageAttachment), at: at)
}
}
* attributed 에는 다양한 요소가 들어갈 수 있기에, ( font, color, lineSpacing, lineBreakMode, aligment 등 )
모든 작업이 끝난 후 이미지를 마지막에 넣어주는 것이 바람직하다.
사용
let myAttributedString = NSMutableAttributedString(string: "myString")
if let image = UIImage(named: "myImageName") {
let bounds = CGRect(x: 0, y: -3, width: 16, height: 16)
saleAttr.appendImage(image: image, bounds: bounds)
}
'iOS, Swift > Feature' 카테고리의 다른 글
Swift ) 만보기 모듈 CoreMotion - EEYatHo iOS (0) | 2023.06.29 |
---|---|
Swift ) HapticEngine 진동. 원하는 패턴. 무한반복 - EEYatHo iOS (0) | 2022.10.28 |
Swift ) Crashlytics dSYM 자동 업로드 - EEYatHo iOS (1) | 2022.06.30 |
Swift ) 이미지 다운로드, 캐싱 - EEYatHo iOS (0) | 2022.06.21 |
Swift ) TTS (Text To Speech) - EEYatHo iOS (0) | 2022.05.05 |
Comments