1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="UTF-8"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14109" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="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="Safe area layout guides" minToolsVersion="9.0"/>
- <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" reuseIdentifier="personItemCell" id="gTV-IL-0wX" customClass="OOPersonCollectionViewCell" customModule="O2Platform" customModuleProvider="target">
- <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" image="personDefaultIcon" translatesAutoresizingMaskIntoConstraints="NO" id="Zhu-mD-3mn">
- <rect key="frame" x="15" y="6" width="30" height="30"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="pu9-yC-S23"/>
- <constraint firstAttribute="width" constant="30" id="qS1-L6-OAs"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="姓名" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aDG-K3-eiH">
- <rect key="frame" x="0.0" y="40" width="60" height="19"/>
- <fontDescription key="fontDescription" name="PingFangSC-Regular" family="PingFang SC" pointSize="13"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </view>
- <constraints>
- <constraint firstItem="aDG-K3-eiH" firstAttribute="top" secondItem="Zhu-mD-3mn" secondAttribute="bottom" constant="4" id="3R1-rI-MJG"/>
- <constraint firstAttribute="trailing" secondItem="aDG-K3-eiH" secondAttribute="trailing" id="4Sq-55-kjS"/>
- <constraint firstItem="Zhu-mD-3mn" firstAttribute="top" secondItem="gTV-IL-0wX" secondAttribute="top" constant="6" id="CAj-II-k0b"/>
- <constraint firstItem="aDG-K3-eiH" firstAttribute="leading" secondItem="gTV-IL-0wX" secondAttribute="leading" id="auY-xM-nv7"/>
- <constraint firstItem="Zhu-mD-3mn" firstAttribute="centerX" secondItem="gTV-IL-0wX" secondAttribute="centerX" id="h3w-rM-JFj"/>
- <constraint firstAttribute="bottom" secondItem="aDG-K3-eiH" secondAttribute="bottom" constant="1" id="pOo-Pe-AUS"/>
- </constraints>
- <viewLayoutGuide key="safeArea" id="ZTg-uK-7eu"/>
- <connections>
- <outlet property="iconImageView" destination="Zhu-mD-3mn" id="Tgr-Ab-KaI"/>
- <outlet property="nameLabel" destination="aDG-K3-eiH" id="LxM-i6-EpT"/>
- </connections>
- <point key="canvasLocation" x="-157" y="-318"/>
- </collectionViewCell>
- </objects>
- <resources>
- <image name="personDefaultIcon" width="24" height="24"/>
- </resources>
- </document>
|