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 | 31 |
Tags
- Tuist
- uikit toast
- 타임라인 포맷팅
- SWIFT
- button configuration
- traits
- rxdatasources
- task cancellation
- task cancel
- swift bottomsheet
- swift dashed line
- custom ui
- swift 백준
- UIKit
- identifiable
- tusit font 추가 방법
- domain data
- claen architecture
- swift 점선
- swift concurrency
- DP
- RxSwift
- swift navigationcontroller
- BFS
- reactorkit
- coordinator
- custombottomsheet
- swift custom ui
- paragraph style
- custom navigation bar
Archives
- Today
- Total
목록스위프트 토스트 (1)
김경록의 앱 개발 여정

앱에서 사용자에게 간단한 알림을 제공할 때 흔히 사용하는 토스트메시지를 구현해 보았습니다.이번 포스팅에서는 iOS에서 토스트 메시지를 어떻게 구현했는지,그리고 이를 앱 전반에서 안전하고 일관되게 사용하기 위해 어떤 설계 원칙을 적용했는지에 대한 경험을 적어보겠습니다. 🍞 토스트 메시지 구현토스트 메시지는 화면 하단(혹은 지정한 위치)에 잠깐 나타났다가 사라지는 UI 컴포넌트입니다.저는 아래와 같이 토스트 메시지를 구현했습니다.import UIKitimport SnapKitfinal class ToastManager { static let shared = ToastManager() private var isShowingToast = false private init() {}..
Trouble Shooting
2025. 4. 16. 18:43