250x250
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
- 개발자
- react
- front-end
- javascript
- iPhone
- css3
- 비전공 개발자
- 애니메이션
- button
- jQuery
- html5
- keyframes
- effect
- 풀스택
- SWIFT
- image
- 백엔드
- HTML
- ipad
- xcode
- IOS
- 비전공자
- 자바스크립트
- MAC
- Animation
- hover
- 프론트엔드
- iOS 개발자
- php
- CSS
Archives
- Today
- Total
목록text field (1)
비전공자 개발일기

import UIKit class ViewController: UIViewController, UITextFieldDelegate { @IBOutlet weak var textField: UITextField! override func viewDidLoad() { super.viewDidLoad() textField.delegate = self setup() } func setup() { view.backgroundColor = UIColor.gray textField.placeholder = "Input Ur Email Address" textField.keyboardType = UIKeyboardType.emailAddress textField.borderStyle = .roundedRect text..
SWIFT
2022. 12. 6. 00:53