added settings menu and persistent storage for settings

This commit is contained in:
Diego Waxemberg
2014-10-29 00:47:51 -04:00
parent 412c5c2516
commit 77b6d304f7
24 changed files with 2803 additions and 56 deletions

View File

@@ -0,0 +1,20 @@
//
// SettingsViewController.h
// Limelight
//
// Created by Diego Waxemberg on 10/27/14.
// Copyright (c) 2014 Limelight Stream. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
@interface SettingsViewController : UIViewController
@property (strong, nonatomic) IBOutlet UILabel *bitrateLabel;
@property (strong, nonatomic) IBOutlet UISlider *bitrateSlider;
@property (strong, nonatomic) IBOutlet UISegmentedControl *framerateSelector;
@property (strong, nonatomic) IBOutlet UISegmentedControl *resolutionSelector;
- (void) saveSettings;
@end