Add subtitle to Screen Security setting to explain its function.

Closes #1014
Fixes  #993
pull/1/head
Adam Kunicki 9 years ago committed by Frederic Jacobs
parent 489407c46a
commit da97349d41

@ -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:

Loading…
Cancel
Save