From 089976ee4ff2c9a9313c0df613c6d01826f746a3 Mon Sep 17 00:00:00 2001 From: katie disimone Date: Fri, 9 Mar 2018 13:07:44 -0800 Subject: [PATCH] Add prompt on Max Basal Rate Reminder to check pump's max basal rate when setting the Loop's max basal rate --- Loop/View Controllers/TextFieldTableViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Loop/View Controllers/TextFieldTableViewController.swift b/Loop/View Controllers/TextFieldTableViewController.swift index c343def6be..e59b5e5a5c 100644 --- a/Loop/View Controllers/TextFieldTableViewController.swift +++ b/Loop/View Controllers/TextFieldTableViewController.swift @@ -51,6 +51,7 @@ extension TextFieldTableViewController { vc.placeholder = NSLocalizedString("Enter a rate in units per hour", comment: "The placeholder text instructing users how to enter a maximum basal rate") vc.keyboardType = .decimalPad vc.unit = NSLocalizedString("U/hour", comment: "The unit string for units per hour") + vc.contextHelp = NSLocalizedString("Please check that the maximum basal rate entered here does not exceed the corresponding maximum basal rate setting in the pump.", comment: "Instructions to help get max basal rate setting correct.") if let maxBasal = value { vc.value = valueNumberFormatter.string(from: NSNumber(value: maxBasal))