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
- Xcode
- ribs
- 클린 코드
- Clean Code
- 애니메이션
- MVVM
- rxswift
- swiftUI
- map
- SWIFT
- Protocol
- Observable
- uiscrollview
- clean architecture
- Human interface guide
- Refactoring
- swift documentation
- combine
- 리펙터링
- 스위프트
- UITextView
- 리펙토링
- tableView
- UICollectionView
- HIG
- ios
- RxCocoa
- collectionview
- uitableview
- 리팩토링
Archives
- Today
- Total
목록titleLabel (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/ewbBsQ/btr7ftWoF71/SkG14Sl3kLJjL91rpxWt11/img.png)
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