UIButton SystemImage 크기 조절
✅ 버튼에 이미지를 넣은 후에 크기 조절하는 코드를 알아볼 예정.
✅ 코드
let taskAddButton: UIButton = {
let button = UIButton()
let imageConfig = UIImage.SymbolConfiguration(pointSize: 30, weight: .light)
let image = UIImage(systemName: "plus", withConfiguration: imageConfig)
button.setImage(image, for: .normal)
button.tintColor = .white
button.layer.cornerRadius = 27.5
button.backgroundColor = #colorLiteral(red: 0.7332392335, green: 0.7877069116, blue: 0.4581792951, alpha: 1)
return button
}()
만약 Image에 configuration을 적용하지 않는다면, 안에 이미지가 아주 작게 나타남.
'Archive > 위젯 캘린더(project-ios)' 카테고리의 다른 글
[iOS] UITableView BackgroundView didTapped ✨ (0) | 2022.05.04 |
---|---|
[iOS] Swift Calendar 첫 날과 마지막 날 찾기 (0) | 2022.05.03 |
[iOS] collectionViewCell 사이에 공백없애기 (0) | 2022.05.02 |
[iOS15] Device width, height in safeAreaLayoutGuide (0) | 2022.05.02 |