Skip to content

[IDLE-000] 릴리스 1.0.2버전 develop에 반영 #77

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

Merged
merged 9 commits into from
Sep 28, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public enum IdleInfoPlist {

"CFBundleDisplayName": "$(BUNDLE_DISPLAY_NAME)",

"CFBundleShortVersionString" : "1.0.1",
"CFBundleShortVersionString" : "1.0.2",

"NSAppTransportSecurity" : [
"NSAllowsArbitraryLoads" : true
Expand All @@ -40,6 +40,9 @@ public enum IdleInfoPlist {
"UIInterfaceOrientationPortrait"
],

// 다크모드 금지 설정
"UIUserInterfaceStyle" : "Light",

// iPad 지원하는 화면 모드
"UISupportedInterfaceOrientations~ipad" : [
"UIInterfaceOrientationPortrait"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ public struct NativeRecruitmentPostDetailDTO: EntityRepresentable {
if let applyTime {
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss"
applyDate = dateFormatter.date(from: applyTime)
print(applyTime)
}

return .init(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ public struct NativeRecruitmentPostForWorkerDTO: EntityRepresentable {
dateFormatter.dateFormat = "yyyy-MM-dd"

let deadlineDate = self.applyDeadline != nil ? dateFormatter.date(from: self.applyDeadline!) : nil
let applyDate = self.applyTime != nil ? dateFormatter.date(from: self.applyDeadline!) : nil

dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss"

let applyDate = self.applyTime != nil ? dateFormatter.date(from: self.applyTime!) : nil

let iso8601Formatter = ISO8601DateFormatter()
var createdDate: Date?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public class WorkerPagablePostBoardVC: BaseViewController {
.postBoardData?
.drive(onNext: { [weak self] (isRefreshed, cellData) in
guard let self else { return }
self.postData = postData
self.postData = cellData
self.postTableView.reloadData()
isPaging = false

Expand Down