added basic UI components and outlets/actions

This commit is contained in:
Diego Waxemberg
2014-01-18 00:56:46 -05:00
parent 70510f8410
commit 8fdc5ad97b
6 changed files with 187 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
//
// MainFrameViewController.h
// Limelight-iOS
//
// Created by Diego Waxemberg on 1/17/14.
// Copyright (c) 2014 Diego Waxemberg. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface MainFrameViewController : UIViewController <UIPickerViewDataSource,UIPickerViewDelegate>
- (IBAction)StreamButton:(UIButton *)sender;
- (IBAction)PairButton:(UIButton *)sender;
@property (strong, nonatomic) IBOutlet UIPickerView *StreamConfigs;
@property (strong, nonatomic) NSArray* streamConfigVals;
@end