-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from davisjp1822/master
Added iPhone and iPad compatible authentication view that is contained in a nice Navigation Controller.
- Loading branch information
Showing
6 changed files
with
134 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="4514" systemVersion="13A603" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES"> | ||
<dependencies> | ||
<deployment defaultVersion="1552" identifier="iOS"/> | ||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3747"/> | ||
</dependencies> | ||
<objects> | ||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="LIALinkedInAuthorizationViewController"> | ||
<connections> | ||
<outlet property="authenticationWebView" destination="vlf-ov-cZS" id="vwv-u3-XX5"/> | ||
<outlet property="loadingLabel" destination="axu-LC-bXI" id="k51-Zv-QvE"/> | ||
</connections> | ||
</placeholder> | ||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/> | ||
<view contentMode="scaleToFill" id="1"> | ||
<rect key="frame" x="0.0" y="0.0" width="320" height="568"/> | ||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | ||
<subviews> | ||
<webView clipsSubviews="YES" contentMode="scaleToFill" scalesPageToFit="YES" allowsInlineMediaPlayback="NO" mediaPlaybackRequiresUserAction="NO" mediaPlaybackAllowsAirPlay="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vlf-ov-cZS"> | ||
<rect key="frame" x="0.0" y="0.0" width="320" height="524"/> | ||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | ||
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/> | ||
<dataDetectorType key="dataDetectorTypes"/> | ||
<connections> | ||
<outlet property="delegate" destination="-1" id="4q7-Lh-dht"/> | ||
</connections> | ||
</webView> | ||
<toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="WjC-WP-w4C"> | ||
<rect key="frame" x="0.0" y="524" width="320" height="44"/> | ||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/> | ||
<items> | ||
<barButtonItem image="01-refresh.png" id="7T0-Tr-wGB"> | ||
<connections> | ||
<action selector="tappedRefreshButton:" destination="-1" id="kgn-fR-RcX"/> | ||
</connections> | ||
</barButtonItem> | ||
</items> | ||
</toolbar> | ||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Loading..." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="axu-LC-bXI"> | ||
<rect key="frame" x="122" y="535" width="77" height="21"/> | ||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/> | ||
<constraints> | ||
<constraint firstAttribute="height" constant="21" id="EE0-LC-wpo"/> | ||
<constraint firstAttribute="width" constant="77" id="iSa-53-4zz"/> | ||
</constraints> | ||
<fontDescription key="fontDescription" type="system" pointSize="17"/> | ||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/> | ||
<nil key="highlightedColor"/> | ||
</label> | ||
</subviews> | ||
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> | ||
<constraints> | ||
<constraint firstAttribute="trailing" secondItem="WjC-WP-w4C" secondAttribute="trailing" id="2jd-V9-C5r"/> | ||
<constraint firstAttribute="centerX" secondItem="axu-LC-bXI" secondAttribute="centerX" id="DE2-u2-U4e"/> | ||
<constraint firstItem="WjC-WP-w4C" firstAttribute="top" secondItem="vlf-ov-cZS" secondAttribute="bottom" id="DNv-T1-N6u"/> | ||
<constraint firstItem="vlf-ov-cZS" firstAttribute="leading" secondItem="1" secondAttribute="leading" id="GlM-fL-rJe"/> | ||
<constraint firstAttribute="trailing" secondItem="vlf-ov-cZS" secondAttribute="trailing" id="IcQ-uW-iQ4"/> | ||
<constraint firstItem="vlf-ov-cZS" firstAttribute="top" secondItem="1" secondAttribute="top" id="JP7-cO-j9f"/> | ||
<constraint firstItem="WjC-WP-w4C" firstAttribute="leading" secondItem="1" secondAttribute="leading" id="JmH-9c-ryp"/> | ||
<constraint firstItem="axu-LC-bXI" firstAttribute="top" secondItem="vlf-ov-cZS" secondAttribute="bottom" constant="11" id="SJ4-wO-d1q"/> | ||
<constraint firstAttribute="bottom" secondItem="WjC-WP-w4C" secondAttribute="bottom" id="sEp-ek-fuS"/> | ||
<constraint firstAttribute="bottom" secondItem="axu-LC-bXI" secondAttribute="bottom" constant="12" id="sRq-eY-WYB"/> | ||
<constraint firstItem="WjC-WP-w4C" firstAttribute="top" secondItem="vlf-ov-cZS" secondAttribute="bottom" id="yTR-bw-vPj"/> | ||
</constraints> | ||
<simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/> | ||
<simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/> | ||
</view> | ||
</objects> | ||
<resources> | ||
<image name="01-refresh.png" width="23" height="26"/> | ||
</resources> | ||
</document> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.