Skip to content

Commit

Permalink
[FEAT] TeamNADA#218 - 명함 상세 아이디 히든 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
dlwns33 committed Dec 29, 2021
1 parent 4f95f2e commit 43fea5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
<outlet property="backButton" destination="ppy-17-v7q" id="mdc-dd-yGB"/>
<outlet property="cardView" destination="0P6-1k-dQm" id="qGN-9y-K4Y"/>
<outlet property="idLabel" destination="J0e-kR-6Zc" id="4il-d0-UMv"/>
<outlet property="idStackView" destination="yM7-jk-cSi" id="W9m-Jo-mDr"/>
<outlet property="optionButton" destination="YU7-vs-utH" id="Jg4-K3-dTV"/>
</connections>
</viewController>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class CardDetailViewController: UIViewController {
@IBOutlet weak var optionButton: UIButton!
@IBOutlet weak var cardView: UIView!
@IBOutlet weak var backButton: UIButton!
@IBOutlet weak var idStackView: UIStackView!
@IBOutlet weak var idLabel: UILabel!

public var cardDataModel: Card?
Expand Down Expand Up @@ -110,6 +111,7 @@ extension CardDetailViewController {
case .detail:
return
}
idStackView.isHidden = true
idLabel.text = cardDataModel?.cardID
}
private func setMenu() {
Expand Down

0 comments on commit 43fea5f

Please sign in to comment.