| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14113" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
- <device id="retina4_7" orientation="portrait">
- <adaptation id="fullscreen"/>
- </device>
- <dependencies>
- <deployment identifier="iOS"/>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
- <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
- </dependencies>
- <objects>
- <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
- <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
- <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="gTV-IL-0wX" customClass="ThumbImageCollectionViewCell">
- <rect key="frame" x="0.0" y="0.0" width="60" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
- <rect key="frame" x="0.0" y="0.0" width="60" height="60"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="nv8-jU-nMz">
- <rect key="frame" x="0.0" y="0.0" width="60" height="60"/>
- </imageView>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="1iX-ej-nfS">
- <rect key="frame" x="30" y="0.0" width="30" height="30"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="J9r-Rn-rEY"/>
- <constraint firstAttribute="width" constant="30" id="PRN-Uo-Pto"/>
- </constraints>
- <state key="normal" image="photo.png"/>
- <state key="selected" image="photo_sel.png"/>
- <state key="highlighted" image="image_picked.png"/>
- <connections>
- <action selector="selectedStatusChange:" destination="gTV-IL-0wX" eventType="touchUpInside" id="Rhl-dZ-h2O"/>
- </connections>
- </button>
- </subviews>
- </view>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="nv8-jU-nMz" secondAttribute="bottom" id="Cda-7Z-0AY"/>
- <constraint firstAttribute="trailing" secondItem="nv8-jU-nMz" secondAttribute="trailing" id="P02-pz-1eN"/>
- <constraint firstAttribute="trailing" secondItem="1iX-ej-nfS" secondAttribute="trailing" id="V3k-n7-BFa"/>
- <constraint firstItem="nv8-jU-nMz" firstAttribute="top" secondItem="gTV-IL-0wX" secondAttribute="top" id="Vwb-iF-x24"/>
- <constraint firstItem="1iX-ej-nfS" firstAttribute="top" secondItem="gTV-IL-0wX" secondAttribute="top" id="gWe-Zt-Erz"/>
- <constraint firstItem="nv8-jU-nMz" firstAttribute="leading" secondItem="gTV-IL-0wX" secondAttribute="leading" id="h1i-qj-jVE"/>
- </constraints>
- <connections>
- <outlet property="seletStatusBtn" destination="1iX-ej-nfS" id="wop-Lj-erl"/>
- <outlet property="thumbImage" destination="nv8-jU-nMz" id="Ve0-PX-pO4"/>
- </connections>
- </collectionViewCell>
- </objects>
- <resources>
- <image name="image_picked.png" width="23" height="23"/>
- <image name="photo.png" width="14" height="14"/>
- <image name="photo_sel.png" width="14" height="14"/>
- </resources>
- </document>
|