mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-23 12:44:19 +00:00
25 lines
746 B
Objective-C
25 lines
746 B
Objective-C
//
|
|
// MainFrameViewController.h
|
|
// Limelight-iOS
|
|
//
|
|
// Created by Diego Waxemberg on 1/17/14.
|
|
// Copyright (c) 2014 Diego Waxemberg. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "MDNSManager.h"
|
|
|
|
@interface MainFrameViewController : UIViewController <UIPickerViewDataSource, UIPickerViewDelegate, MDNSCallback, NSURLConnectionDelegate>
|
|
@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;
|
|
|
|
+ (const char*)getHostAddr;
|
|
- (void) segueIntoStream;
|
|
|
|
@end
|