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 |
Tags
- 앱 백그라운드 푸시 데이터 저장
- 앱 꺼졌을 때 푸시 데이터 저장
- 스위프트 앨범
- 플러터 뷰 컨트롤러
- 안드로이드 FCM
- 스위프트 푸시
- 안드로이드 숏컷
- flutter 회전
- NotificationService Extension
- native flutter view
- 스위프트
- flutter rotate
- Flutter UIKitView MethodChannel
- swift 문자
- FlutterView MethodChannel
- 푸시 데이터 저장
- silent push
- swift autolayout
- 스위프트 테이블 뷰 셀
- 노티피케이션 익스텐션
- 스위프트 UserDefaults
- Swift flutterview
- swift sms
- 안드로이드 에러
- 안드로이드 앨범
- 안드로이드 바로가기
- Flutter NativeView
- Swift flutterviewcontroller
- 스위프트 웹뷰
- 스위프트 카메라
Archives
- Today
- Total
목록textfield underline (1)
Things take time
[SWIFT] UITextField의 Under Line 추가하기(밑줄)
[원리] 텍스트 필드의 모양은 대부분 아래와 같다. 스타일의 경우 4개로 제공되긴하는데.. 그 것도 맘에 들지 않을때, 밑 줄을 긋고 싶을때! 아래와 같이 이런 경우엔 스토리보드의 메뉴로는 해결할 수 없다. 프로그래밍 상으로 접근해야한다. textField.borderStyle = .none let border = CALayer() border?.frame = CGRect(x: 0, y: textfield.frame.size.height-1, width: textfield.frame.width, height: 1) border?.backgroundColor = UIColor.white.cgColor textfield.layer.addSublayer((border)!) textfield.textAlignm..
iOS (기능)
2017. 11. 9. 16:47