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
- collectionview
- Clean Code
- RxCocoa
- Protocol
- UITextView
- HIG
- map
- UICollectionView
- rxswift
- Refactoring
- uitableview
- swiftUI
- combine
- MVVM
- tableView
- 클린 코드
- clean architecture
- SWIFT
- 애니메이션
- 리펙터링
- 리펙토링
- uiscrollview
- 스위프트
- 리팩토링
- ribs
- swift documentation
- Observable
- Human interface guide
- Xcode
- ios
Archives
- Today
- Total
목록UIButton의 imageView의 크기 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIButton의 imageView 크기 조절 방법 (imageView, titleLabel)
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