123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /*****************************************************************************
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCSettingsViewController.h"
- #import "IASKSettingsReader.h"
- #import "IASKSpecifier.h"
- #import "VLCAboutViewController.h"
- #define SettingsReUseIdentifier @"SettingsReUseIdentifier"
- @interface VLCSettingsViewController () <UITableViewDataSource, UITableViewDelegate>
- @property (strong, nonatomic) NSUserDefaults *userDefaults;
- @property (strong, nonatomic) IASKSettingsReader *settingsReader;
- @end
- @implementation VLCSettingsViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.userDefaults = [NSUserDefaults standardUserDefaults];
- self.settingsReader = [[IASKSettingsReader alloc] init];
- self.automaticallyAdjustsScrollViewInsets = NO;
- self.edgesForExtendedLayout = UIRectEdgeAll ^ UIRectEdgeTop;
- self.tableView.opaque = NO;
- self.tableView.backgroundColor = [UIColor clearColor];
- }
- - (NSString *)title
- {
- return NSLocalizedString(@"Settings", nil);
- }
- #pragma mark - Table view data source
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return self.settingsReader.numberOfSections;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- return [self.settingsReader numberOfRowsForSection:section];
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SettingsReUseIdentifier];
- if (!cell) {
- cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:SettingsReUseIdentifier];
- }
- IASKSpecifier *specifier = [self.settingsReader specifierForIndexPath:indexPath];
- cell.textLabel.text = [specifier title];
- NSString *specifierType = specifier.type;
- if ([specifierType isEqualToString:kIASKPSMultiValueSpecifier]) {
- NSArray *titles = [specifier multipleTitles];
- NSArray *values = [specifier multipleValues];
- NSUInteger selectedIndex = [values indexOfObject:[self.userDefaults objectForKey:[specifier key]]];
- NSUInteger titlesCount = titles.count;
- if (selectedIndex < titlesCount)
- cell.detailTextLabel.text = [self.settingsReader titleForStringId:titles[selectedIndex]];
- else {
- selectedIndex = [values indexOfObject:[specifier defaultValue]];
- if (selectedIndex < titlesCount)
- cell.detailTextLabel.text = [self.settingsReader titleForStringId:titles[selectedIndex]];
- }
- cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
- } else if ([specifierType isEqualToString:kIASKPSToggleSwitchSpecifier]) {
- cell.detailTextLabel.text = [self.userDefaults boolForKey:[specifier key]] ? NSLocalizedString(@"ON", nil) : NSLocalizedString(@"OFF", nil);
- cell.accessoryType = UITableViewCellAccessoryNone;
- } else {
- cell.detailTextLabel.text = @"";
- cell.accessoryType = UITableViewCellAccessoryNone;
- }
- return cell;
- }
- - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
- {
- return [self.settingsReader titleForSection:section];
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- IASKSpecifier *specifier = [self.settingsReader specifierForIndexPath:indexPath];
- NSString *specifierType = specifier.type;
- if ([specifierType isEqualToString:kIASKPSMultiValueSpecifier]) {
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:specifier.title
- message:nil preferredStyle:UIAlertControllerStyleActionSheet];
- NSUInteger count = [specifier multipleValuesCount];
- NSArray *titles = [specifier multipleTitles];
- NSValue *currentValue = [self.userDefaults objectForKey:[specifier key]] ?: [specifier defaultValue];
- NSUInteger indexOfPreferredAction = [[specifier multipleValues] indexOfObject:currentValue];
- for (NSUInteger i = 0; i < count; i++) {
- id value = [[specifier multipleValues][i] copy];
- UIAlertAction *action = [UIAlertAction actionWithTitle:[self.settingsReader titleForStringId:titles[i]]
- style:UIAlertActionStyleDefault
- handler:^(UIAlertAction * _Nonnull action) {
- [self.userDefaults setObject:value forKey:[specifier key]];
- [self.tableView reloadData];
- }];
- [alertController addAction:action];
- if (i == indexOfPreferredAction) {
- [alertController setPreferredAction:action];
- }
- }
- [alertController addAction:[UIAlertAction actionWithTitle:NSLocalizedString(@"BUTTON_CANCEL", nil)
- style:UIAlertActionStyleCancel
- handler:nil]];
- [self presentViewController:alertController animated:YES completion:nil];
- } else if ([specifierType isEqualToString:kIASKPSToggleSwitchSpecifier]) {
- NSString *specifierKey = [specifier key];
- [self.userDefaults setBool:![self.userDefaults boolForKey:specifierKey] forKey:specifierKey];
- [self.tableView reloadData];
- } else {
- VLCAboutViewController *targetViewController = [[VLCAboutViewController alloc] initWithNibName:nil bundle:nil];
- targetViewController.title = specifier.title;
- [self presentViewController:targetViewController
- animated:YES
- completion:nil];
- }
- }
- @end
|