Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 명함 앞면 url 줄 수 변경 (#475) #480

Merged
merged 2 commits into from
May 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ extension CompanyFrontCardCell {
phoneNumberLabel.lineBreakMode = .byTruncatingTail
linkURLLabel.font = .textRegular04
linkURLLabel.textColor = .white
linkURLLabel.numberOfLines = 2
linkURLLabel.numberOfLines = 1
linkURLLabel.lineBreakMode = .byTruncatingTail

linkURLStackView.alignment = .center
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@
</stackView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="D6j-Cz-d99" secondAttribute="trailing" constant="20" id="Frl-ja-0Kb"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="D6j-Cz-d99" secondAttribute="trailing" id="Frl-ja-0Kb"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="7Qd-rb-YOy" secondAttribute="trailing" id="Oqw-oH-SoH"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="32s-jO-RgD" secondAttribute="trailing" constant="20" id="p6L-xc-Oo3"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="32s-jO-RgD" secondAttribute="trailing" id="p6L-xc-Oo3"/>
</constraints>
</stackView>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="iconMbti" translatesAutoresizingMaskIntoConstraints="NO" id="SXl-Ls-Qsz">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ extension FanFrontCardCell {
snsLabel.lineBreakMode = .byTruncatingTail
firstURLLabel.font = .textRegular04
firstURLLabel.textColor = .white
firstURLLabel.numberOfLines = 2
firstURLLabel.numberOfLines = 1
firstURLLabel.lineBreakMode = .byTruncatingTail
secondURLLabel.font = .textRegular04
secondURLLabel.textColor = .white
secondURLLabel.numberOfLines = 2
secondURLLabel.numberOfLines = 1
secondURLLabel.lineBreakMode = .byTruncatingTail

firstURLStackView.alignment = .center
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@
</stackView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="D6j-Cz-d99" secondAttribute="trailing" constant="20" id="Frl-ja-0Kb"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="D6j-Cz-d99" secondAttribute="trailing" id="Frl-ja-0Kb"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="7Qd-rb-YOy" secondAttribute="trailing" id="Oqw-oH-SoH"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="32s-jO-RgD" secondAttribute="trailing" constant="20" id="p6L-xc-Oo3"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="32s-jO-RgD" secondAttribute="trailing" id="p6L-xc-Oo3"/>
</constraints>
</stackView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cO6-DY-EUn">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ extension FrontCardCell {
phoneNumberLabel.lineBreakMode = .byTruncatingTail
linkURLLabel.font = .textRegular04
linkURLLabel.textColor = .white
linkURLLabel.numberOfLines = 2
linkURLLabel.numberOfLines = 1
linkURLLabel.lineBreakMode = .byTruncatingTail

linkURLStackView.alignment = .center
Expand Down
4 changes: 2 additions & 2 deletions NADA-iOS-forRelease/Sources/Cells/CardCell/FrontCardCell.xib
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@
</stackView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="D6j-Cz-d99" secondAttribute="trailing" constant="20" id="Frl-ja-0Kb"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="D6j-Cz-d99" secondAttribute="trailing" id="Frl-ja-0Kb"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="7Qd-rb-YOy" secondAttribute="trailing" id="Oqw-oH-SoH"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="32s-jO-RgD" secondAttribute="trailing" constant="20" id="p6L-xc-Oo3"/>
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="32s-jO-RgD" secondAttribute="trailing" id="p6L-xc-Oo3"/>
</constraints>
</stackView>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="iconMbti" translatesAutoresizingMaskIntoConstraints="NO" id="SXl-Ls-Qsz">
Expand Down