From c4038b293b8dedaa55d47b42e82f8b874eaa44a6 Mon Sep 17 00:00:00 2001 From: Eric Sieg Date: Fri, 24 Jun 2016 18:42:27 -0700 Subject: [PATCH 1/2] Default the title for the name screen to Name instead of a Consent which is a confusing duplicate --- APCAppCore/APCAppCore/Consent/APCConsentTask.m | 1 + 1 file changed, 1 insertion(+) diff --git a/APCAppCore/APCAppCore/Consent/APCConsentTask.m b/APCAppCore/APCAppCore/Consent/APCConsentTask.m index 2e064ca5..d4722d9d 100644 --- a/APCAppCore/APCAppCore/Consent/APCConsentTask.m +++ b/APCAppCore/APCAppCore/Consent/APCConsentTask.m @@ -202,6 +202,7 @@ - (NSArray*)commonInitWithPropertiesFileName:(NSString*)fileName customSteps:(NS inDocument:_consentDocument]; reviewStep.reasonForConsent = reason; + reviewStep.title = NSLocalizedStringWithDefaultValue(@"Name", @"APCAppCore", APCBundle(), @"Name", nil); // Title of page where it asks for first and last name NSMutableArray* consentSteps = [[NSMutableArray alloc] init]; [consentSteps addObject:_visualStep]; From 5c03dac6511483c9c27aff86fd197830819e91a8 Mon Sep 17 00:00:00 2001 From: MDP Date: Mon, 18 Jul 2016 18:44:05 -0400 Subject: [PATCH 2/2] added in 702 changes --- .../Profile/APCWithdrawSurveyViewController.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/APCAppCore/APCAppCore/UI/TabBarControllers/Profile/APCWithdrawSurveyViewController.m b/APCAppCore/APCAppCore/UI/TabBarControllers/Profile/APCWithdrawSurveyViewController.m index afb23dab..5328ae36 100644 --- a/APCAppCore/APCAppCore/UI/TabBarControllers/Profile/APCWithdrawSurveyViewController.m +++ b/APCAppCore/APCAppCore/UI/TabBarControllers/Profile/APCWithdrawSurveyViewController.m @@ -116,6 +116,9 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N APCCheckTableViewCell *cell = (APCCheckTableViewCell *)[tableView dequeueReusableCellWithIdentifier:kAPCCheckTableViewCellIdentifier]; + cell.textLabel.minimumScaleFactor = 0.5f; + cell.textLabel.adjustsFontSizeToFitWidth = YES; // no ellipses + cell.textLabel.text = optionItem.caption; cell.confirmationView.completed = optionItem.on;