일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Session
- IOS
- MacOS
- darkmode
- Apple
- 개발자
- Firebase
- Git
- 한글
- Notification
- github
- geofencing
- iOS16
- SwiftUI
- error
- mac
- Archive
- Code
- 이미지
- view
- rxswift
- JPA
- Realm
- UIButton
- Swift
- window
- 웹뷰
- appstore
- Xcode
- FLUTTER
- Today
- Total
목록String (4)
EEYatHo 앱 깎는 이야기

성능 비교의 3가지 관점 Allocation: 인스턴스를 생성하면 Stack과 Heap 중 어느 곳에 할당 되는 지 Reference Counting: 인스턴스를 통해 레퍼런스 카운트가 몇개가 발생하는지 Method Dispatch: 인스턴스에서 메소드를 호출했을 때, 메소드 디스패치가 정적인지 동적인지 Allocation Stack 은 LIFO 구조 및 Pointer 를 이용해서 할당, 해제하기에 간단한 만큼, O(1)의 빠른 속도를 가짐 Heap 은 사용하지 않은 블럭을 찾아서 할당하고, 해제한 블럭을 적절한 곳에 재삽입해야하고, thread-safe 를 위해 locking 또는 기타 동기화 기법을 사용해 무결성을 보호해야하기에, Stack 보다 느린 속도를 가짐 Stack 은 Value-Sement..
줄바꿈을 어떻게 구현해야할지 고려하지 않고 손쉽게 이미지를 텍스트 옆에 넣을 수 있다. 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:..
Html 문법을 지원하는0 NSMutableAttributedString 생성자 NSMutableAttributedString( data: data, // htmlString -> data options: [.documentType: NSAttributedString.DocumentType.html, .characterEncoding:String.Encoding.utf8.rawValue], documentAttributes: nil ) Html String -> NSMutableAttributedString 기본형 func htmlToAtt(htmlStr: String) -> NSMutableAttributedString? { guard let data = htmlStr.data(using: .utf8)..
Realm에는 Swift의 Array를 사용할 수 없습니다. Swift의 Array는 Realm의 Object를 상속하지 않기 때문입니다. 해결 방법으로, Realm에서 제공하는 List라는 데이터형을 활용하면 됩니다. Realm List 활용한 예시 코드 Swift에서 사용할 때는 Array이고, Realm 내부적으로는 List인 인터페이스 입니다. class MyModel: Object { .... // 원하는 데이터가 String 이라고 가정했을 때, let dataList: List = List() var dataArray: [String] { get { return dataList.map{$0} } set { dataList.removeAll() dataList.append(objectsIn: ..