일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- App Store Connect
- CLLocationManagerDelegate
- Timer
- 서체관리자
- addannotation
- 한국어 개인정보처리방침
- dispatchsource
- SwiftUI Boolean 값
- CoreLocation
- Required Reason API
- xcode로 날씨앱 만들기
- swift
- MKMapItem
- weak var
- RunningTimer
- 단일 책임원칙
- WeatherManager
- weatherKit
- 클로저의 캡슐화
- MKMapViewDelegate
- Startign Assignments
- UIAlertAction
- Xcode
- 러닝타이머
- 영문 개인정보처리방침
- 러닝기록앱
- UICollectionViewFlowLayout
- font book
- Protocol
- AnyObject
- Today
- Total
VesselWheel
e-mail / pw 입력창 본문
import SwiftUI
struct ContentView: View {
@State private var email: String = ""
@State private var passwd: String = ""
var body: some View {
VStack {
VStack{
TextField("이메일", text: self.$email)
Divider()
SecureField("비밀번호", text: self.$passwd)
}
Divider()
Text("입력된 이메일 : \(self.email)")
Text("입력된 비밀번호 : \(self.passwd)")
// Form View : 컨트롤이나 뷰를 꾸며주는 객체
Form{
VStack{
TextField("이메일", text: self.$email)
Divider()
SecureField("비밀번호", text: self.$passwd)
}
Divider()
Text("입력된 이메일 : \(self.email)")
Text("입력된 비밀번호 : \(self.passwd)")
HStack{
Button(action: {
self.hideKeyboard()
}) {
Text("입력완료")
}
}
}
.textFieldStyle(RoundedBorderTextFieldStyle())
}
}
}
#if canImport(UIKit)
extension View{
func hideKeyboard(){
UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
#endif
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
'Xcode Study' 카테고리의 다른 글
단추 늘이기, 줄이기 (0) | 2023.10.18 |
---|---|
func Count and Age present (0) | 2023.10.18 |
@State (0) | 2023.10.18 |
MapView (0) | 2023.10.18 |
rbenv for cocoa pods (0) | 2023.10.18 |