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
- Switch
- NotificationCenter
- struct
- escaping
- 화면전환
- singleton
- list
- IOS
- calendar
- SWIFTUI
- http
- Refresh
- Git
- PushNotification
- CoreImage
- mvvm
- segue
- SWIFT
- array
- self
- error
- Observer
- class
- viewlifecycle
- Animation
- uikit
- 고차함수
- 글또
- apns
- ScrollView
Archives
- Today
- Total
목록alert (1)
seong_hye, the developer

📘 Swift: Alert와 Action Sheet앱을 사용하다보면 사용자에게 메시지를 전달하거나 선택지를 받아야하는 경우가 생기죠이 때 사용할 수 있는 alert와 action Sheet에 대해서 한번 알아보려 해요🔹 Alert에 대하여Alert(알림창)은 사용자에게 메시지를 전달하거나, 확인/취소와 같은 간단한 선택지를 제공하는 UI요소SwiftUI와 UIKit 에서 만드는 방식이 다름🔍 SwiftUI에서 Alert 사용법import SwiftUIstruct ContentView: View { @State private var showAlert = false var body: some View { VStack { Button("알림창 띄우기") { showAlert ..
IOS
2022. 7. 19.