From 334acb11de9fe05b18f374d1b34d24f8001f017f Mon Sep 17 00:00:00 2001 From: ITlearning Date: Tue, 11 Jan 2022 00:35:55 +0900 Subject: [PATCH] =?UTF-8?q?#61=20-=20=ED=94=84=EB=A1=9C=ED=95=84=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20=EB=B7=B0=20=EA=B8=B0=EB=B3=B8=20UI=20?= =?UTF-8?q?=EA=B5=AC=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Budi/Budi.xcodeproj/project.pbxproj | 17 ++- .../Cells/LocationReplaceTableViewCell.xib | 4 +- .../Edit/Cells/MyBudiEditHeaderView.swift | 23 ++++ .../Edit/Cells/MyBudiEditHeaderView.xib | 55 ++++++++ .../Cells/NormalTextFieldTableViewCell.swift | 8 +- .../Cells/NormalTextFieldTableViewCell.xib | 9 +- .../Edit/Cells/PositionTableViewCell.xib | 4 +- .../Edit/Cells/ProjectTableViewCell.swift | 30 +++++ .../Edit/Cells/ProjectTableViewCell.xib | 126 ++++++++++++++++++ .../Edit/MyBudiEditViewController.swift | 102 +++++++++++++- .../MyBudi/Edit/MyBudiEditViewController.xib | 6 +- .../MyBudi/Edit/MyBudiEditViewModel.swift | 18 ++- .../PortfolioURLTableViewCell.swift | 11 +- .../ReuseViews/PortfolioURLTableViewCell.xib | 33 ++++- .../Storyborads/Base.lproj/Main.storyboard | 4 +- 15 files changed, 422 insertions(+), 28 deletions(-) create mode 100644 Budi/Budi/Source/MyBudi/Edit/Cells/MyBudiEditHeaderView.swift create mode 100644 Budi/Budi/Source/MyBudi/Edit/Cells/MyBudiEditHeaderView.xib create mode 100644 Budi/Budi/Source/MyBudi/Edit/Cells/ProjectTableViewCell.swift create mode 100644 Budi/Budi/Source/MyBudi/Edit/Cells/ProjectTableViewCell.xib diff --git a/Budi/Budi.xcodeproj/project.pbxproj b/Budi/Budi.xcodeproj/project.pbxproj index ae32b709..af0e2944 100644 --- a/Budi/Budi.xcodeproj/project.pbxproj +++ b/Budi/Budi.xcodeproj/project.pbxproj @@ -182,6 +182,10 @@ A8E03CD4278C693C0074DE4B /* LocationReplaceTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A8E03CD2278C693C0074DE4B /* LocationReplaceTableViewCell.xib */; }; A8E03CD7278C6B030074DE4B /* PositionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8E03CD5278C6B030074DE4B /* PositionTableViewCell.swift */; }; A8E03CD8278C6B030074DE4B /* PositionTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A8E03CD6278C6B030074DE4B /* PositionTableViewCell.xib */; }; + A8E03CDB278C79870074DE4B /* ProjectTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8E03CD9278C79870074DE4B /* ProjectTableViewCell.swift */; }; + A8E03CDC278C79870074DE4B /* ProjectTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A8E03CDA278C79870074DE4B /* ProjectTableViewCell.xib */; }; + A8E03CDE278C7C3E0074DE4B /* MyBudiEditHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8E03CDD278C7C3E0074DE4B /* MyBudiEditHeaderView.swift */; }; + A8E03CE0278C7C680074DE4B /* MyBudiEditHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A8E03CDF278C7C680074DE4B /* MyBudiEditHeaderView.xib */; }; B92D54F9274C02EB00D0E851 /* .swiftlint.yml in Resources */ = {isa = PBXBuildFile; fileRef = B92D54F8274C02EB00D0E851 /* .swiftlint.yml */; }; B92D5505274C03AB00D0E851 /* Post.swift in Sources */ = {isa = PBXBuildFile; fileRef = B92D5504274C03AA00D0E851 /* Post.swift */; }; B94D2D9A277DE9E700DD7FDD /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = B94D2D99277DE9E700DD7FDD /* GoogleService-Info.plist */; }; @@ -416,6 +420,10 @@ A8E03CD2278C693C0074DE4B /* LocationReplaceTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LocationReplaceTableViewCell.xib; sourceTree = ""; }; A8E03CD5278C6B030074DE4B /* PositionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PositionTableViewCell.swift; sourceTree = ""; }; A8E03CD6278C6B030074DE4B /* PositionTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PositionTableViewCell.xib; sourceTree = ""; }; + A8E03CD9278C79870074DE4B /* ProjectTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProjectTableViewCell.swift; sourceTree = ""; }; + A8E03CDA278C79870074DE4B /* ProjectTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ProjectTableViewCell.xib; sourceTree = ""; }; + A8E03CDD278C7C3E0074DE4B /* MyBudiEditHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyBudiEditHeaderView.swift; sourceTree = ""; }; + A8E03CDF278C7C680074DE4B /* MyBudiEditHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MyBudiEditHeaderView.xib; sourceTree = ""; }; B92D54F8274C02EB00D0E851 /* .swiftlint.yml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.yaml; path = .swiftlint.yml; sourceTree = ""; }; B92D54FE274C037E00D0E851 /* String+date.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+date.swift"; sourceTree = ""; }; B92D5501274C039C00D0E851 /* HomeContentViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HomeContentViewModel.swift; sourceTree = ""; }; @@ -612,6 +620,10 @@ A8E03CD2278C693C0074DE4B /* LocationReplaceTableViewCell.xib */, A8E03CD5278C6B030074DE4B /* PositionTableViewCell.swift */, A8E03CD6278C6B030074DE4B /* PositionTableViewCell.xib */, + A8E03CD9278C79870074DE4B /* ProjectTableViewCell.swift */, + A8E03CDA278C79870074DE4B /* ProjectTableViewCell.xib */, + A8E03CDD278C7C3E0074DE4B /* MyBudiEditHeaderView.swift */, + A8E03CDF278C7C680074DE4B /* MyBudiEditHeaderView.xib */, ); path = Cells; sourceTree = ""; @@ -1191,6 +1203,7 @@ buildActionMask = 2147483647; files = ( A8E03CD0278C68A40074DE4B /* NormalTextFieldTableViewCell.xib in Resources */, + A8E03CDC278C79870074DE4B /* ProjectTableViewCell.xib in Resources */, B92D54F9274C02EB00D0E851 /* .swiftlint.yml in Resources */, 5E43FB3E278A95EF0073574F /* ChattingProjectRequestCell.xib in Resources */, 5E820B8B2769F04A004A03E9 /* ProjectMembersBottomDetailCell.xib in Resources */, @@ -1200,6 +1213,7 @@ 5EB430362758953000283239 /* HomeWritingOnlineCell.xib in Resources */, 5EB4302A2758950400283239 /* HomeWritingNameCell.xib in Resources */, 5EFB0A5B27341C1100F39A4D /* ChattingTimeCell.xib in Resources */, + A8E03CE0278C7C680074DE4B /* MyBudiEditHeaderView.xib in Resources */, 5EA453A12731778000943C94 /* HomeDetailMainCell.xib in Resources */, B94D2D9A277DE9E700DD7FDD /* GoogleService-Info.plist in Resources */, 5EB430322758952500283239 /* HomeWritingDurationCell.xib in Resources */, @@ -1319,6 +1333,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + A8E03CDE278C7C3E0074DE4B /* MyBudiEditHeaderView.swift in Sources */, B9684168277853F3002F5D3D /* alertView.swift in Sources */, B9684167277853EF002F5D3D /* HomeContentViewModel.swift in Sources */, B9684166277853E7002F5D3D /* HomeContainerViewController.swift in Sources */, @@ -1333,8 +1348,8 @@ B968415F277853BC002F5D3D /* ProjectHistory.swift in Sources */, 5E9150A62772356A000578D4 /* MyBudiEditCellType.swift in Sources */, 5E88636E2767450A0022397A /* HomeWritingCellType.swift in Sources */, - 5E820B7B2769E9D7004A03E9 /* HomeWritingMembersDetailPartBottomCell.swift in Sources */, A8E03CD3278C693C0074DE4B /* LocationReplaceTableViewCell.swift in Sources */, + A8E03CDB278C79870074DE4B /* ProjectTableViewCell.swift in Sources */, 5E8863822767AE190022397A /* HomeWritingImageBottomCell.swift in Sources */, 5EF986CA2786E58600874A40 /* Leader.swift in Sources */, A8CE1196278B1F91008AFEBC /* MyBudiContentViewController.swift in Sources */, diff --git a/Budi/Budi/Source/MyBudi/Edit/Cells/LocationReplaceTableViewCell.xib b/Budi/Budi/Source/MyBudi/Edit/Cells/LocationReplaceTableViewCell.xib index 4077811b..721d0552 100644 --- a/Budi/Budi/Source/MyBudi/Edit/Cells/LocationReplaceTableViewCell.xib +++ b/Budi/Budi/Source/MyBudi/Edit/Cells/LocationReplaceTableViewCell.xib @@ -24,7 +24,7 @@