Skip to content

Commit

Permalink
feat: ✨ SelectBarButton 구현 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
zekexros committed Jun 11, 2021
1 parent de79d82 commit 4d41875
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//
// SelectBarButton.swift
// issue-tracker
//
// Created by 양준혁 on 2021/06/10.
//

import UIKit

class SelectBarButton: UIButton {
override init(frame: CGRect) {
super.init(frame: frame)
setImage(UIImage(systemName: "checkmark.circle"), for: .normal)
setTitle("선택", for: .normal)
setTitleColor(.systemBlue, for: .normal)
semanticContentAttribute = .forceRightToLeft
}

required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}

0 comments on commit 4d41875

Please sign in to comment.