// // MainFrameViewController.h // Limelight-iOS // // Created by Diego Waxemberg on 1/17/14. // Copyright (c) 2014 Diego Waxemberg. All rights reserved. // #import #import "MDNSManager.h" #import "PairManager.h" #import "StreamConfiguration.h" @interface MainFrameViewController : UIViewController @property (strong, nonatomic) IBOutlet UIPickerView *HostPicker; - (IBAction)StreamButton:(UIButton *)sender; - (IBAction)PairButton:(UIButton *)sender; @property (strong, nonatomic) IBOutlet UIPickerView *StreamConfigs; @property (strong, nonatomic) NSArray* streamConfigVals; @property (strong, nonatomic) NSArray* hostPickerVals; @property (strong, nonatomic) IBOutlet UITextField *hostTextField; + (StreamConfiguration*) getStreamConfiguration; @end