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
- swift sms
- flutter 회전
- 스위프트 테이블 뷰 셀
- swift autolayout
- Swift flutterviewcontroller
- 안드로이드 앨범
- 스위프트 카메라
- 스위프트 UserDefaults
- 앱 백그라운드 푸시 데이터 저장
- Flutter NativeView
- 스위프트 웹뷰
- 안드로이드 바로가기
- flutter rotate
- swift 문자
- 푸시 데이터 저장
- 앱 꺼졌을 때 푸시 데이터 저장
- 안드로이드 에러
- 스위프트 앨범
- 안드로이드 숏컷
- native flutter view
- 스위프트
- NotificationService Extension
- Flutter UIKitView MethodChannel
- 플러터 뷰 컨트롤러
- FlutterView MethodChannel
- 노티피케이션 익스텐션
- silent push
- Swift flutterview
- 안드로이드 FCM
- 스위프트 푸시
Archives
- Today
- Total
목록스위프트 텍스트필드 밑줄 (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