mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-17 14:11:33 +00:00
added basic UI components and outlets/actions
This commit is contained in:
@@ -7,6 +7,9 @@
|
|||||||
objects = {
|
objects = {
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
|
FBC18AE3188A2AB500D5D34E /* MainFrame.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FBC18AE2188A2AB500D5D34E /* MainFrame.storyboard */; };
|
||||||
|
FBC18B2B188A3B9100D5D34E /* MainFrameViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FBC18B2A188A3B9100D5D34E /* MainFrameViewController.m */; };
|
||||||
|
FBC18B2F188A4E0500D5D34E /* VideoDepacketizer.m in Sources */ = {isa = PBXBuildFile; fileRef = FBC18B2E188A4E0500D5D34E /* VideoDepacketizer.m */; };
|
||||||
FBF6AE75188A274100B50578 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBF6AE74188A274100B50578 /* Foundation.framework */; };
|
FBF6AE75188A274100B50578 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBF6AE74188A274100B50578 /* Foundation.framework */; };
|
||||||
FBF6AE77188A274100B50578 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBF6AE76188A274100B50578 /* CoreGraphics.framework */; };
|
FBF6AE77188A274100B50578 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBF6AE76188A274100B50578 /* CoreGraphics.framework */; };
|
||||||
FBF6AE79188A274100B50578 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBF6AE78188A274100B50578 /* UIKit.framework */; };
|
FBF6AE79188A274100B50578 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FBF6AE78188A274100B50578 /* UIKit.framework */; };
|
||||||
@@ -35,6 +38,11 @@
|
|||||||
/* End PBXContainerItemProxy section */
|
/* End PBXContainerItemProxy section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
|
FBC18AE2188A2AB500D5D34E /* MainFrame.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = MainFrame.storyboard; path = ../MainFrame.storyboard; sourceTree = "<group>"; };
|
||||||
|
FBC18B29188A3B9100D5D34E /* MainFrameViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainFrameViewController.h; sourceTree = "<group>"; };
|
||||||
|
FBC18B2A188A3B9100D5D34E /* MainFrameViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainFrameViewController.m; sourceTree = "<group>"; };
|
||||||
|
FBC18B2D188A4E0500D5D34E /* VideoDepacketizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VideoDepacketizer.h; path = Video/VideoDepacketizer.h; sourceTree = "<group>"; };
|
||||||
|
FBC18B2E188A4E0500D5D34E /* VideoDepacketizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VideoDepacketizer.m; path = Video/VideoDepacketizer.m; sourceTree = "<group>"; };
|
||||||
FBF6AE71188A274100B50578 /* Limelight-iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Limelight-iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
FBF6AE71188A274100B50578 /* Limelight-iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Limelight-iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
FBF6AE74188A274100B50578 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
FBF6AE74188A274100B50578 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
||||||
FBF6AE76188A274100B50578 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
FBF6AE76188A274100B50578 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
||||||
@@ -81,6 +89,15 @@
|
|||||||
/* End PBXFrameworksBuildPhase section */
|
/* End PBXFrameworksBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXGroup section */
|
/* Begin PBXGroup section */
|
||||||
|
FBC18B2C188A4DC900D5D34E /* Video */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
FBC18B2D188A4E0500D5D34E /* VideoDepacketizer.h */,
|
||||||
|
FBC18B2E188A4E0500D5D34E /* VideoDepacketizer.m */,
|
||||||
|
);
|
||||||
|
name = Video;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
FBF6AE68188A274100B50578 = {
|
FBF6AE68188A274100B50578 = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
@@ -115,11 +132,15 @@
|
|||||||
FBF6AE7C188A274100B50578 /* Limelight-iOS */ = {
|
FBF6AE7C188A274100B50578 /* Limelight-iOS */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
FBC18B2C188A4DC900D5D34E /* Video */,
|
||||||
|
FBC18AE2188A2AB500D5D34E /* MainFrame.storyboard */,
|
||||||
FBF6AE85188A274100B50578 /* AppDelegate.h */,
|
FBF6AE85188A274100B50578 /* AppDelegate.h */,
|
||||||
FBF6AE86188A274100B50578 /* AppDelegate.m */,
|
FBF6AE86188A274100B50578 /* AppDelegate.m */,
|
||||||
FBF6AE8B188A274100B50578 /* Images.xcassets */,
|
FBF6AE8B188A274100B50578 /* Images.xcassets */,
|
||||||
FBF6AE88188A274100B50578 /* Limelight_iOS.xcdatamodeld */,
|
FBF6AE88188A274100B50578 /* Limelight_iOS.xcdatamodeld */,
|
||||||
FBF6AE7D188A274100B50578 /* Supporting Files */,
|
FBF6AE7D188A274100B50578 /* Supporting Files */,
|
||||||
|
FBC18B29188A3B9100D5D34E /* MainFrameViewController.h */,
|
||||||
|
FBC18B2A188A3B9100D5D34E /* MainFrameViewController.m */,
|
||||||
);
|
);
|
||||||
path = "Limelight-iOS";
|
path = "Limelight-iOS";
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@@ -200,6 +221,9 @@
|
|||||||
LastUpgradeCheck = 0500;
|
LastUpgradeCheck = 0500;
|
||||||
ORGANIZATIONNAME = "Diego Waxemberg";
|
ORGANIZATIONNAME = "Diego Waxemberg";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
|
FBF6AE70188A274100B50578 = {
|
||||||
|
DevelopmentTeam = DM46QST4M7;
|
||||||
|
};
|
||||||
FBF6AE90188A274100B50578 = {
|
FBF6AE90188A274100B50578 = {
|
||||||
TestTargetID = FBF6AE70188A274100B50578;
|
TestTargetID = FBF6AE70188A274100B50578;
|
||||||
};
|
};
|
||||||
@@ -228,6 +252,7 @@
|
|||||||
isa = PBXResourcesBuildPhase;
|
isa = PBXResourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
FBC18AE3188A2AB500D5D34E /* MainFrame.storyboard in Resources */,
|
||||||
FBF6AE81188A274100B50578 /* InfoPlist.strings in Resources */,
|
FBF6AE81188A274100B50578 /* InfoPlist.strings in Resources */,
|
||||||
FBF6AE8C188A274100B50578 /* Images.xcassets in Resources */,
|
FBF6AE8C188A274100B50578 /* Images.xcassets in Resources */,
|
||||||
);
|
);
|
||||||
@@ -248,9 +273,11 @@
|
|||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
FBC18B2F188A4E0500D5D34E /* VideoDepacketizer.m in Sources */,
|
||||||
FBF6AE87188A274100B50578 /* AppDelegate.m in Sources */,
|
FBF6AE87188A274100B50578 /* AppDelegate.m in Sources */,
|
||||||
FBF6AE8A188A274100B50578 /* Limelight_iOS.xcdatamodeld in Sources */,
|
FBF6AE8A188A274100B50578 /* Limelight_iOS.xcdatamodeld in Sources */,
|
||||||
FBF6AE83188A274100B50578 /* main.m in Sources */,
|
FBF6AE83188A274100B50578 /* main.m in Sources */,
|
||||||
|
FBC18B2B188A3B9100D5D34E /* MainFrameViewController.m in Sources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
@@ -371,6 +398,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||||
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||||
GCC_PREFIX_HEADER = "Limelight-iOS/Limelight-iOS-Prefix.pch";
|
GCC_PREFIX_HEADER = "Limelight-iOS/Limelight-iOS-Prefix.pch";
|
||||||
INFOPLIST_FILE = "Limelight-iOS/Limelight-iOS-Info.plist";
|
INFOPLIST_FILE = "Limelight-iOS/Limelight-iOS-Info.plist";
|
||||||
@@ -384,6 +412,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||||
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||||
GCC_PREFIX_HEADER = "Limelight-iOS/Limelight-iOS-Prefix.pch";
|
GCC_PREFIX_HEADER = "Limelight-iOS/Limelight-iOS-Prefix.pch";
|
||||||
INFOPLIST_FILE = "Limelight-iOS/Limelight-iOS-Info.plist";
|
INFOPLIST_FILE = "Limelight-iOS/Limelight-iOS-Info.plist";
|
||||||
@@ -453,6 +482,7 @@
|
|||||||
FBF6AEA5188A274100B50578 /* Release */,
|
FBF6AEA5188A274100B50578 /* Release */,
|
||||||
);
|
);
|
||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
|
defaultConfigurationName = Release;
|
||||||
};
|
};
|
||||||
FBF6AEA6188A274100B50578 /* Build configuration list for PBXNativeTarget "Limelight-iOSTests" */ = {
|
FBF6AEA6188A274100B50578 /* Build configuration list for PBXNativeTarget "Limelight-iOSTests" */ = {
|
||||||
isa = XCConfigurationList;
|
isa = XCConfigurationList;
|
||||||
@@ -461,6 +491,7 @@
|
|||||||
FBF6AEA8188A274100B50578 /* Release */,
|
FBF6AEA8188A274100B50578 /* Release */,
|
||||||
);
|
);
|
||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
|
defaultConfigurationName = Release;
|
||||||
};
|
};
|
||||||
/* End XCConfigurationList section */
|
/* End XCConfigurationList section */
|
||||||
|
|
||||||
|
|||||||
@@ -16,10 +16,6 @@
|
|||||||
|
|
||||||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
||||||
{
|
{
|
||||||
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
|
|
||||||
// Override point for customization after application launch.
|
|
||||||
self.window.backgroundColor = [UIColor whiteColor];
|
|
||||||
[self.window makeKeyAndVisible];
|
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -24,15 +24,22 @@
|
|||||||
<string>1.0</string>
|
<string>1.0</string>
|
||||||
<key>LSRequiresIPhoneOS</key>
|
<key>LSRequiresIPhoneOS</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
<key>UIMainStoryboardFile</key>
|
||||||
|
<string>MainFrame</string>
|
||||||
|
<key>UIMainStoryboardFile~ipad</key>
|
||||||
|
<string>MainFrame</string>
|
||||||
<key>UIRequiredDeviceCapabilities</key>
|
<key>UIRequiredDeviceCapabilities</key>
|
||||||
<array>
|
<array>
|
||||||
<string>armv7</string>
|
<string>armv7</string>
|
||||||
</array>
|
</array>
|
||||||
|
<key>UIStatusBarHidden~ipad</key>
|
||||||
|
<true/>
|
||||||
<key>UISupportedInterfaceOrientations</key>
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
<array>
|
<array>
|
||||||
<string>UIInterfaceOrientationPortrait</string>
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||||
</array>
|
</array>
|
||||||
<key>UISupportedInterfaceOrientations~ipad</key>
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
<array>
|
<array>
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
//
|
||||||
|
// MainFrameViewController.m
|
||||||
|
// Limelight-iOS
|
||||||
|
//
|
||||||
|
// Created by Diego Waxemberg on 1/17/14.
|
||||||
|
// Copyright (c) 2014 Diego Waxemberg. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MainFrameViewController.h"
|
||||||
|
|
||||||
|
@interface MainFrameViewController ()
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation MainFrameViewController
|
||||||
|
|
||||||
|
- (void)PairButton:(UIButton *)sender
|
||||||
|
{
|
||||||
|
NSLog(@"Pair Button Pressed!");
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)StreamButton:(UIButton *)sender
|
||||||
|
{
|
||||||
|
NSLog(@"Stream Button Pressed!");
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
|
||||||
|
{
|
||||||
|
return [self.streamConfigVals objectAtIndex:row];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
|
||||||
|
{
|
||||||
|
//TODO: figure out how to save this info!!
|
||||||
|
}
|
||||||
|
|
||||||
|
// returns the number of 'columns' to display.
|
||||||
|
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// returns the # of rows in each component..
|
||||||
|
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
|
||||||
|
{
|
||||||
|
return 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)viewDidLoad
|
||||||
|
{
|
||||||
|
[super viewDidLoad];
|
||||||
|
// Do any additional setup after loading the view.
|
||||||
|
self.streamConfigVals = [[NSArray alloc] initWithObjects:@"1280x720 (30Hz)",@"1280x720 (60Hz)",@"1920x1080 (30Hz)",@"1920x1080 (60Hz)",nil];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)didReceiveMemoryWarning
|
||||||
|
{
|
||||||
|
[super didReceiveMemoryWarning];
|
||||||
|
// Dispose of any resources that can be recreated.
|
||||||
|
}
|
||||||
|
@end
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="4514" systemVersion="13B42" targetRuntime="iOS.CocoaTouch.iPad" propertyAccessControl="none" useAutolayout="YES" initialViewController="wb7-af-jn8">
|
||||||
|
<dependencies>
|
||||||
|
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3747"/>
|
||||||
|
</dependencies>
|
||||||
|
<scenes>
|
||||||
|
<!--Main Frame View Controller-->
|
||||||
|
<scene sceneID="Me4-Nr-liz">
|
||||||
|
<objects>
|
||||||
|
<viewController id="wb7-af-jn8" customClass="MainFrameViewController" sceneMemberID="viewController">
|
||||||
|
<layoutGuides>
|
||||||
|
<viewControllerLayoutGuide type="top" id="9ZL-gP-cfY"/>
|
||||||
|
<viewControllerLayoutGuide type="bottom" id="Shd-7C-CVq"/>
|
||||||
|
</layoutGuides>
|
||||||
|
<view key="view" contentMode="scaleToFill" id="ugc-rC-3gm">
|
||||||
|
<rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
|
<subviews>
|
||||||
|
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Geforce PC Host" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="iC2-gT-zgS">
|
||||||
|
<rect key="frame" x="20" y="107" width="728" height="30"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
|
<fontDescription key="fontDescription" type="system" pointSize="22"/>
|
||||||
|
<textInputTraits key="textInputTraits"/>
|
||||||
|
</textField>
|
||||||
|
<pickerView contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rnA-uG-hAA">
|
||||||
|
<rect key="frame" x="0.0" y="211" width="768" height="216"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
||||||
|
<connections>
|
||||||
|
<outlet property="dataSource" destination="wb7-af-jn8" id="25E-op-oh6"/>
|
||||||
|
<outlet property="delegate" destination="wb7-af-jn8" id="gjZ-oj-THD"/>
|
||||||
|
</connections>
|
||||||
|
</pickerView>
|
||||||
|
<button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="taW-Um-zc6" userLabel="Start Stream Btn">
|
||||||
|
<rect key="frame" x="189" y="435" width="391" height="141"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
|
<fontDescription key="fontDescription" type="system" pointSize="26"/>
|
||||||
|
<state key="normal" title="Start Streaming Steam!">
|
||||||
|
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
</state>
|
||||||
|
<connections>
|
||||||
|
<action selector="StreamButton:" destination="wb7-af-jn8" eventType="touchUpInside" id="u2m-8A-Tor"/>
|
||||||
|
</connections>
|
||||||
|
</button>
|
||||||
|
<button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0Nz-KX-Du4" userLabel="Pair Btn">
|
||||||
|
<rect key="frame" x="311" y="604" width="147" height="36"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
|
<fontDescription key="fontDescription" type="system" pointSize="26"/>
|
||||||
|
<state key="normal" title="Pair with PC">
|
||||||
|
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
</state>
|
||||||
|
<connections>
|
||||||
|
<action selector="PairButton:" destination="wb7-af-jn8" eventType="touchUpInside" id="Ct1-6m-aYg"/>
|
||||||
|
</connections>
|
||||||
|
</button>
|
||||||
|
</subviews>
|
||||||
|
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
|
||||||
|
</view>
|
||||||
|
<connections>
|
||||||
|
<outlet property="StreamConfigs" destination="rnA-uG-hAA" id="LPP-jQ-5eW"/>
|
||||||
|
</connections>
|
||||||
|
</viewController>
|
||||||
|
<placeholder placeholderIdentifier="IBFirstResponder" id="ZYl-Xu-QyD" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
||||||
|
</objects>
|
||||||
|
<point key="canvasLocation" x="109" y="-320"/>
|
||||||
|
</scene>
|
||||||
|
</scenes>
|
||||||
|
<simulatedMetricsContainer key="defaultSimulatedMetrics">
|
||||||
|
<simulatedStatusBarMetrics key="statusBar" statusBarStyle="lightContent"/>
|
||||||
|
<simulatedOrientationMetrics key="orientation"/>
|
||||||
|
<simulatedScreenMetrics key="destination"/>
|
||||||
|
</simulatedMetricsContainer>
|
||||||
|
</document>
|
||||||
Reference in New Issue
Block a user