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
- Xcode
- scrollview
- swiftUI
- rxswift
- combine
- uiscrollview
- 클린 코드
- 스위프트
- swift documentation
- 리펙토링
- ios
- UICollectionView
- MVVM
- tableView
- Clean Code
- map
- Protocol
- clean architecture
- 리팩토링
- collectionview
- 애니메이션
- Refactoring
- RxCocoa
- UITextView
- Observable
- HIG
- uitableview
- ribs
- Human interface guide
- SWIFT
Archives
- Today
- Total
목록titleLabel (1)
김종권의 iOS 앱 개발 알아가기
UIButton의 imageView, titleLabel UIButton에는 내부적으로 UIImageView와 UILabel이 존재 아래처럼 UIButton하나만 사용하면 버튼안에 이미지와 텍스트 삽입이 가능 import UIKit class ViewController: UIViewController { private let button: UIButton = { let button = UIButton() button.setTitle("button", for: .normal) button.setTitleColor(.systemBlue, for: .normal) button.setTitleColor(.blue, for: .highlighted) button.addTarget(self, action: #sel..
iOS 응용 (swift)
2023. 4. 4. 01:33