-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from boostcampwm-2022/fix_total
자잘한 버그 수정 및 리팩토링
- Loading branch information
Showing
24 changed files
with
49 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-12.6 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/114.png
Binary file not shown.
Binary file removed
BIN
-13.5 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/120.png
Binary file not shown.
Binary file removed
BIN
-23.5 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/180.png
Binary file not shown.
Binary file removed
BIN
-1.63 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/29.png
Binary file not shown.
Binary file removed
BIN
-2.65 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/40.png
Binary file not shown.
Binary file removed
BIN
-4.53 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/57.png
Binary file not shown.
Binary file removed
BIN
-4.76 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/58.png
Binary file not shown.
Binary file removed
BIN
-4.94 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/60.png
Binary file not shown.
Binary file removed
BIN
-7.52 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/80.png
Binary file not shown.
Binary file removed
BIN
-8.46 KB
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/87.png
Binary file not shown.
70 changes: 2 additions & 68 deletions
70
SpaceCapsule/SpaceCapsule/Assets.xcassets/AppIcon.appiconset/Contents.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// BlurEffectView.swift | ||
// SpaceCapsule | ||
// | ||
// Created by jisu on 2022/12/08. | ||
// | ||
|
||
import UIKit | ||
|
||
final class CapsuleBlurEffectView: UIVisualEffectView { | ||
init() { | ||
super.init(effect: UIBlurEffect(style: .systemUltraThinMaterialDark)) | ||
self.layer.cornerRadius = FrameResource.listCapsuleCellWidth / 2 | ||
self.clipsToBounds = true | ||
} | ||
|
||
@available(*, unavailable) | ||
required init?(coder: NSCoder) { | ||
fatalError("init(coder:) has not been implemented") | ||
} | ||
|
||
func changeStyle(to newStyle: UIBlurEffect.Style) { | ||
let effect = UIBlurEffect(style: newStyle) | ||
self.effect = effect | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,4 +54,3 @@ class ProfileButton: UIControl { | |
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters