diff --git a/Projects/Feature/MyPage/Sources/Scene/MyPage/Cell/SettingCell.swift b/Projects/Feature/MyPage/Sources/Scene/MyPage/Cell/SettingCell.swift index f3cedd0..3309a81 100644 --- a/Projects/Feature/MyPage/Sources/Scene/MyPage/Cell/SettingCell.swift +++ b/Projects/Feature/MyPage/Sources/Scene/MyPage/Cell/SettingCell.swift @@ -28,7 +28,8 @@ final class SettingCell: UITableViewCell, ReusableView { private let versionLabel: UILabel = { let v = UILabel() - v.setTextWithLineHeight(text: "1.2.1", lineHeight: 24) + let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "버전 알 수 없음" + v.setTextWithLineHeight(text: version, lineHeight: 24) v.textColor = Colors.Blue._4 v.font = Fonts.body._4 return v