Add subtitle to Screen Security setting to explain its function.

Closes #1014
Fixes  #993
This commit is contained in:
Adam Kunicki 2015-12-19 17:14:58 -08:00 committed by Frederic Jacobs
parent 489407c46a
commit da97349d41
2 changed files with 9 additions and 0 deletions

View File

@ -111,6 +111,15 @@
}
}
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section {
switch (section) {
case 0:
return NSLocalizedString(@"SETTINGS_SCREEN_SECURITY_DETAIL", nil);
default:
return nil;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
switch (indexPath.section) {
case 0: