Skip to content
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
8 changes: 4 additions & 4 deletions ByeBoo-iOS/ByeBoo-iOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
CODE_SIGN_ENTITLEMENTS = "ByeBoo-iOS/ByeBoo-Dev.entitlements";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 8;
CURRENT_PROJECT_VERSION = 9;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = Z6682N5G5D;
Expand Down Expand Up @@ -351,7 +351,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 8;
CURRENT_PROJECT_VERSION = 9;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = Z6682N5G5D;
GENERATE_INFOPLIST_FILE = YES;
Expand Down Expand Up @@ -512,7 +512,7 @@
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 8;
CURRENT_PROJECT_VERSION = 9;
GENERATE_INFOPLIST_FILE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 18.2;
MACOSX_DEPLOYMENT_TARGET = 15.2;
Expand All @@ -534,7 +534,7 @@
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 8;
CURRENT_PROJECT_VERSION = 9;
GENERATE_INFOPLIST_FILE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 18.2;
MACOSX_DEPLOYMENT_TARGET = 15.2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ final class ArchiveQuestHeaderView: BaseView {

questTitleLabel.do {
$0.applyByeBooFont (
style: .head1M24,
style: .head2M22,
color: .grayscale100,
numberOfLines: 0
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ final class WriteActiveTypeQuestView: BaseView {

imgCountLabel.applyByeBooFont(
style: .body6R14,
text: "(\(imgCount)/1)",
text: "\(imgCount)/1",
color: .grayscale400
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ extension WriteQuestionTypeQuestView: UpdateUIWhenKeyboardProtocol {
}

questTextField.snp.remakeConstraints {
$0.top.equalTo(divider.snp.bottom).offset(8.adjustedH)
$0.top.equalTo(divider.snp.bottom).offset(20.adjustedH)
$0.leading.trailing.equalToSuperview().inset(24.adjustedW)
$0.height.greaterThanOrEqualTo(280.adjustedH)
$0.bottom.equalToSuperview().inset(17.adjustedH)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,7 @@ final class ArchiveQuestViewController: BaseViewController {

guard let entryViewController else { return }
switch entryViewController {
case .writeQuest:
ByeBooNavigationBar.makeNavigationBar(
navigationItem: self.navigationItem,
navigationController: self.navigationController,
type: .close(header: .black),
action: #selector(close)
)
case .questMain:
case .writeQuest, .questMain:
ByeBooNavigationBar.makeNavigationBar(
navigationItem: self.navigationItem,
navigationController: self.navigationController,
Expand Down
Loading