This commit is contained in:
lianxiang
2018-09-20 00:25:25 +08:00
parent 27e27d5d12
commit 309cae4ab2
56 changed files with 1755 additions and 39 deletions
@@ -7,8 +7,12 @@
//
#import <UIKit/UIKit.h>
#import "VersionModel.h"
@interface AppVersionDescCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *VersionDescLabel;
@property (weak, nonatomic) IBOutlet UILabel *versionLabe;
@property (weak, nonatomic) IBOutlet UILabel *tempLabe;
-(void)loadCellDataAt:(NSIndexPath *)indexPath version:(VersionModel *)model;
@end
@@ -17,6 +17,13 @@
}
-(void)loadCellDataAt:(NSIndexPath *)indexPath version:(VersionModel *)model{
self.VersionDescLabel.text = model.content;
self.versionLabe.text = model.title;
self.tempLabe.text = model.createTime;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
@@ -32,13 +32,29 @@
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="V1.0" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nNp-3o-Day">
<rect key="frame" x="7" y="11" width="27.5" height="20"/>
<fontDescription key="fontDescription" name="PingFangSC-Semibold" family="PingFang SC" pointSize="14"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="2018" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gq7-SB-R78">
<rect key="frame" x="330" y="11" width="29" height="19"/>
<fontDescription key="fontDescription" name="PingFangSC-Medium" family="PingFang SC" pointSize="13"/>
<color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<nil key="highlightedColor"/>
</label>
</subviews>
<constraints>
<constraint firstItem="v31-x8-IlY" firstAttribute="top" secondItem="JXV-Zf-Ztb" secondAttribute="bottom" constant="15" id="26g-Zf-2QA"/>
<constraint firstItem="nNp-3o-Day" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" constant="11" id="2jZ-Ky-FFC"/>
<constraint firstAttribute="trailing" secondItem="gq7-SB-R78" secondAttribute="trailing" constant="16" id="64C-Qu-X4e"/>
<constraint firstAttribute="trailing" secondItem="v31-x8-IlY" secondAttribute="trailing" constant="7" id="Ama-ed-0mY"/>
<constraint firstItem="v31-x8-IlY" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="7" id="Fax-Sh-1aI"/>
<constraint firstItem="nNp-3o-Day" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="7" id="ddT-Gk-lT5"/>
<constraint firstAttribute="trailing" secondItem="JXV-Zf-Ztb" secondAttribute="trailing" id="e2a-v1-3mo"/>
<constraint firstItem="JXV-Zf-Ztb" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" constant="40" id="oxm-rv-lzY"/>
<constraint firstItem="gq7-SB-R78" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" constant="11" id="u1e-1d-cgh"/>
<constraint firstItem="JXV-Zf-Ztb" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" id="uZy-ia-fM8"/>
</constraints>
</tableViewCellContentView>
@@ -46,6 +62,8 @@
<viewLayoutGuide key="safeArea" id="aW0-zy-SZf"/>
<connections>
<outlet property="VersionDescLabel" destination="v31-x8-IlY" id="Rfo-xt-BWD"/>
<outlet property="tempLabe" destination="gq7-SB-R78" id="F3e-f2-IHK"/>
<outlet property="versionLabe" destination="nNp-3o-Day" id="mjy-8A-vA1"/>
</connections>
<point key="canvasLocation" x="33.5" y="87"/>
</tableViewCell>
@@ -40,7 +40,7 @@
<constraint firstItem="xDN-Vh-dG1" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" constant="31" id="hPh-Q6-tZd"/>
</constraints>
</tableViewCellContentView>
<color key="backgroundColor" red="0.51372549020000002" green="0.039215686270000001" blue="0.039215686270000001" alpha="1" colorSpace="calibratedRGB"/>
<color key="backgroundColor" red="0.51372549020000002" green="0.039215686270000001" blue="0.039215686270000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<viewLayoutGuide key="safeArea" id="aW0-zy-SZf"/>
<point key="canvasLocation" x="34" y="96.5"/>
</tableViewCell>
+17
View File
@@ -0,0 +1,17 @@
//
// GiGAUserInfoCell.h
// GIGA
//
// Created by lianxiang on 2018/9/19.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface GiGAUserInfoCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *infoTitle;
@property (weak, nonatomic) IBOutlet UILabel *numberLabe;
-(void)loadCellData:(NSIndexPath *)indexPath;
@end
+44
View File
@@ -0,0 +1,44 @@
//
// GiGAUserInfoCell.m
// GIGA
//
// Created by lianxiang on 2018/9/19.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import "GiGAUserInfoCell.h"
@implementation GiGAUserInfoCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
-(void)loadCellData:(NSIndexPath *)indexPath{
if (indexPath.section == 1 && indexPath.row == 0) {
//个人信息
self.infoTitle.text = @"个人信息";
self.numberLabe.hidden = YES;
}else if (indexPath.section == 1 && indexPath.row == 1){
//修改密码
self.infoTitle.text = @"修改密码";
self.numberLabe.hidden = YES;
}else if (indexPath.section == 1 && indexPath.row == 2){
//修改手机
self.infoTitle.text = @"修改手机";
self.numberLabe.hidden = NO;
GiGaUser *user = [[GiGaUserManager shareUser] getCurrentUser];
self.numberLabe.text = user.mobileMask;
}
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
+72
View File
@@ -0,0 +1,72 @@
<?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" 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"/>
<tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="GiGAUserInfoCell" id="KGk-i7-Jjw" customClass="GiGAUserInfoCell">
<rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KGk-i7-Jjw" id="H2p-sc-9uM">
<rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="FTl-oI-Mf6">
<rect key="frame" x="16" y="11" width="37" height="20"/>
<fontDescription key="fontDescription" name="PingFangSC-Medium" family="PingFang SC" pointSize="14"/>
<color key="textColor" red="0.21568627450980393" green="0.21568627450980393" blue="0.21568627450980393" alpha="1" colorSpace="calibratedRGB"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7Df-4e-35M">
<rect key="frame" x="293" y="10" width="37" height="20"/>
<fontDescription key="fontDescription" name="PingFangSC-Medium" family="PingFang SC" pointSize="14"/>
<color key="textColor" red="0.2156862745" green="0.2156862745" blue="0.2156862745" alpha="1" colorSpace="calibratedRGB"/>
<nil key="highlightedColor"/>
</label>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="user_indicator_right" translatesAutoresizingMaskIntoConstraints="NO" id="beP-cc-pCK">
<rect key="frame" x="343" y="14" width="8.5" height="14"/>
<constraints>
<constraint firstAttribute="width" constant="8.5" id="JgK-pL-apL"/>
<constraint firstAttribute="height" constant="14" id="m28-NI-Wlo"/>
</constraints>
</imageView>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="l3j-L5-7Uw">
<rect key="frame" x="16" y="43" width="328" height="1"/>
<color key="backgroundColor" red="0.87058823529411766" green="0.87058823529411766" blue="0.87058823529411766" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="zOJ-Ek-dgz"/>
</constraints>
</view>
</subviews>
<constraints>
<constraint firstItem="beP-cc-pCK" firstAttribute="centerY" secondItem="H2p-sc-9uM" secondAttribute="centerY" id="0BO-mg-TpM"/>
<constraint firstItem="7Df-4e-35M" firstAttribute="centerY" secondItem="H2p-sc-9uM" secondAttribute="centerY" constant="-1.75" id="IOX-Kf-b5p"/>
<constraint firstItem="l3j-L5-7Uw" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="16" id="N5r-PD-EsH"/>
<constraint firstItem="FTl-oI-Mf6" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="16" id="Z3q-9F-Dxi"/>
<constraint firstItem="beP-cc-pCK" firstAttribute="leading" secondItem="7Df-4e-35M" secondAttribute="trailing" constant="13" id="gg8-Ms-yU1"/>
<constraint firstItem="FTl-oI-Mf6" firstAttribute="centerY" secondItem="H2p-sc-9uM" secondAttribute="centerY" id="hKa-gq-Jxw"/>
<constraint firstAttribute="trailing" secondItem="beP-cc-pCK" secondAttribute="trailing" constant="23.5" id="mZY-Vf-3nT"/>
<constraint firstAttribute="bottom" secondItem="l3j-L5-7Uw" secondAttribute="bottom" id="rKH-xt-5nd"/>
<constraint firstAttribute="trailing" secondItem="l3j-L5-7Uw" secondAttribute="trailing" constant="31" id="u3G-a1-ogU"/>
</constraints>
</tableViewCellContentView>
<viewLayoutGuide key="safeArea" id="aW0-zy-SZf"/>
<connections>
<outlet property="infoTitle" destination="FTl-oI-Mf6" id="p6v-b8-qo9"/>
<outlet property="numberLabe" destination="7Df-4e-35M" id="dAE-Qu-dVQ"/>
</connections>
<point key="canvasLocation" x="24.5" y="54"/>
</tableViewCell>
</objects>
<resources>
<image name="user_indicator_right" width="9" height="14"/>
</resources>
</document>
@@ -37,7 +37,7 @@
</label>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="O4K-t3-KxB">
<rect key="frame" x="0.0" y="53" width="409" height="1"/>
<color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<color key="backgroundColor" red="0.87058823529999996" green="0.87058823529999996" blue="0.87058823529999996" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="lgP-Cy-DDC"/>
</constraints>
+6 -3
View File
@@ -31,10 +31,13 @@
if (user.headImgUrl && ![user.nickName isKindOfClass:[NSNull class]]) {
[self.userAvator sd_setImageWithURL:[NSURL URLWithString:user.headImgUrl]];
}
if (!user.nickName && ![user.nickName isKindOfClass:[NSNull class]]) {
self.userName.text = user.nickName;
}else{
if (!user.nickName || [user.nickName isKindOfClass:[NSNull class]] || [user.nickName isEqualToString:@""]) {
self.userName.text = @"GIGAUser666";
}else{
self.userName.text = user.nickName;
}
}
@@ -0,0 +1,19 @@
//
// GIGaUserChangeMobleCell.h
// GIGA
//
// Created by lianxiang on 2018/9/19.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface GIGaUserChangeMobleCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIButton *codeSendBtn;
@property (weak, nonatomic) IBOutlet UIButton *oldBtn;
@property (weak, nonatomic) IBOutlet UIButton *xinPhoneBtn;
@property (weak, nonatomic) IBOutlet UITextField *numberTexFiled;
@property (weak, nonatomic) IBOutlet UITextField *codeTexFiled;
@end
@@ -0,0 +1,29 @@
//
// GIGaUserChangeMobleCell.m
// GIGA
//
// Created by lianxiang on 2018/9/19.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import "GIGaUserChangeMobleCell.h"
@implementation GIGaUserChangeMobleCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
self.codeSendBtn.layer.masksToBounds = YES;
self.codeSendBtn.layer.cornerRadius = 2;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
@@ -0,0 +1,137 @@
<?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" 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="Constraints to layout margins" minToolsVersion="6.0"/>
<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"/>
<tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="GIGaUserChangeMobleCell" id="KGk-i7-Jjw" customClass="GIGaUserChangeMobleCell">
<rect key="frame" x="0.0" y="0.0" width="320" height="170"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KGk-i7-Jjw" id="H2p-sc-9uM">
<rect key="frame" x="0.0" y="0.0" width="320" height="169.5"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="249" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="2ZD-g3-5XT">
<rect key="frame" x="0.0" y="0.0" width="161" height="49"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="height" constant="49" id="8X4-gu-I7p"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="161" id="KZV-my-7i5"/>
<constraint firstAttribute="height" constant="49" id="Sbd-Zj-PhK"/>
</constraints>
<fontDescription key="fontDescription" name="PingFangSC-Medium" family="PingFang SC" pointSize="13"/>
<state key="normal" title="1.验证原手机号">
<color key="titleColor" red="0.51372549019607838" green="0.039215686274509803" blue="0.039215686274509803" alpha="1" colorSpace="calibratedRGB"/>
</state>
</button>
<button opaque="NO" contentMode="scaleToFill" horizontalCompressionResistancePriority="749" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0O3-uD-8he">
<rect key="frame" x="161" y="0.0" width="159" height="49"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="height" constant="49" id="gHg-LI-QBV"/>
<constraint firstAttribute="width" relation="greaterThanOrEqual" constant="159" id="udM-bR-3xe"/>
</constraints>
<fontDescription key="fontDescription" name="PingFangSC-Medium" family="PingFang SC" pointSize="13"/>
<state key="normal" title="2. 绑定新手机" backgroundImage="bg_change_newnumber">
<color key="titleColor" red="0.6470588235294118" green="0.6470588235294118" blue="0.6470588235294118" alpha="1" colorSpace="calibratedRGB"/>
</state>
</button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ltN-mh-pCu">
<rect key="frame" x="0.0" y="48" width="320" height="1"/>
<color key="backgroundColor" red="0.8901960784313725" green="0.8901960784313725" blue="0.8901960784313725" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="BUO-kq-9vw"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="BHw-jn-B4K">
<rect key="frame" x="25" y="96" width="271" height="1"/>
<color key="backgroundColor" red="0.87058823529411766" green="0.87058823529411766" blue="0.87058823529411766" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="height" constant="0.5" id="d5m-4a-rgv"/>
</constraints>
</view>
<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="111*****19199" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="zKj-gY-1hq">
<rect key="frame" x="22" y="60" width="182" height="20"/>
<constraints>
<constraint firstAttribute="height" constant="20" id="1lF-nU-EXq"/>
</constraints>
<nil key="textColor"/>
<fontDescription key="fontDescription" name="PingFangSC-Medium" family="PingFang SC" pointSize="14"/>
<textInputTraits key="textInputTraits"/>
</textField>
<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="请输入验证码" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="hGp-Ng-Bdl">
<rect key="frame" x="22" y="100" width="274" height="30"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="qX8-fG-b53"/>
</constraints>
<color key="textColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="calibratedRGB"/>
<fontDescription key="fontDescription" name="PingFangSC-Medium" family="PingFang SC" pointSize="13"/>
<textInputTraits key="textInputTraits"/>
</textField>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Xj0-4q-Lcf">
<rect key="frame" x="25" y="137" width="271" height="1"/>
<color key="backgroundColor" red="0.87058823529411766" green="0.87058823529411766" blue="0.87058823529411766" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="height" constant="0.5" id="aPk-X1-OSE"/>
</constraints>
</view>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yh7-p6-Uf5">
<rect key="frame" x="245" y="56" width="59" height="30"/>
<color key="backgroundColor" red="0.70980392160000005" green="0.054901960780000002" blue="0.054901960780000002" alpha="1" colorSpace="calibratedRGB"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="8iy-aa-Gc9"/>
<constraint firstAttribute="width" constant="59" id="eTQ-av-rBv"/>
</constraints>
<fontDescription key="fontDescription" name="PingFangSC-Medium" family="PingFang SC" pointSize="10"/>
<state key="normal" title="发送验证码"/>
</button>
</subviews>
<constraints>
<constraint firstItem="ltN-mh-pCu" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" constant="48" id="1B7-Zk-FVf"/>
<constraint firstAttribute="trailing" secondItem="Xj0-4q-Lcf" secondAttribute="trailing" constant="24" id="1lK-gV-mIr"/>
<constraint firstItem="ltN-mh-pCu" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" id="35t-8L-aG2"/>
<constraint firstItem="BHw-jn-B4K" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="25" id="3B1-1D-A2u"/>
<constraint firstItem="0O3-uD-8he" firstAttribute="leading" secondItem="2ZD-g3-5XT" secondAttribute="trailing" id="6K7-mx-gbk"/>
<constraint firstItem="Xj0-4q-Lcf" firstAttribute="top" secondItem="hGp-Ng-Bdl" secondAttribute="bottom" constant="7" id="6u4-GR-ox5"/>
<constraint firstItem="2ZD-g3-5XT" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" id="CiT-60-LRQ"/>
<constraint firstItem="zKj-gY-1hq" firstAttribute="top" secondItem="ltN-mh-pCu" secondAttribute="bottom" constant="11" id="DHw-st-cVi"/>
<constraint firstItem="Xj0-4q-Lcf" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="25" id="EuX-go-oDE"/>
<constraint firstAttribute="trailing" secondItem="BHw-jn-B4K" secondAttribute="trailing" constant="24" id="JF7-TA-MUQ"/>
<constraint firstItem="BHw-jn-B4K" firstAttribute="top" secondItem="yh7-p6-Uf5" secondAttribute="bottom" constant="10" id="KuJ-Ad-Lou"/>
<constraint firstItem="0O3-uD-8he" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" id="LN4-jM-a7y"/>
<constraint firstItem="yh7-p6-Uf5" firstAttribute="leading" secondItem="zKj-gY-1hq" secondAttribute="trailing" constant="41" id="PM7-xr-Z8C"/>
<constraint firstAttribute="trailing" secondItem="0O3-uD-8he" secondAttribute="trailing" id="VMO-hZ-ZR6"/>
<constraint firstItem="2ZD-g3-5XT" firstAttribute="top" secondItem="H2p-sc-9uM" secondAttribute="top" id="Yar-X7-iHB"/>
<constraint firstAttribute="trailing" secondItem="hGp-Ng-Bdl" secondAttribute="trailing" constant="24" id="aQD-wy-GKM"/>
<constraint firstAttribute="trailing" secondItem="ltN-mh-pCu" secondAttribute="trailing" id="edS-VB-4JC"/>
<constraint firstAttribute="trailing" secondItem="yh7-p6-Uf5" secondAttribute="trailing" constant="16" id="el7-tP-Ix7"/>
<constraint firstItem="zKj-gY-1hq" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="22" id="fPU-n6-Hyd"/>
<constraint firstAttribute="bottomMargin" secondItem="Xj0-4q-Lcf" secondAttribute="bottom" constant="21" id="psu-29-T16"/>
<constraint firstItem="hGp-Ng-Bdl" firstAttribute="top" secondItem="BHw-jn-B4K" secondAttribute="bottom" constant="3.5" id="tJp-CU-wfk"/>
<constraint firstItem="hGp-Ng-Bdl" firstAttribute="leading" secondItem="H2p-sc-9uM" secondAttribute="leading" constant="22" id="w93-63-Lei"/>
</constraints>
</tableViewCellContentView>
<viewLayoutGuide key="safeArea" id="aW0-zy-SZf"/>
<connections>
<outlet property="codeSendBtn" destination="yh7-p6-Uf5" id="Y6N-dz-UOL"/>
<outlet property="codeTexFiled" destination="hGp-Ng-Bdl" id="fS5-MW-4DK"/>
<outlet property="numberTexFiled" destination="zKj-gY-1hq" id="ggw-Pm-eZ5"/>
<outlet property="oldBtn" destination="2ZD-g3-5XT" id="Nbp-cd-1tw"/>
<outlet property="xinPhoneBtn" destination="0O3-uD-8he" id="FOV-jq-ysj"/>
</connections>
<point key="canvasLocation" x="33" y="54"/>
</tableViewCell>
</objects>
<resources>
<image name="bg_change_newnumber" width="197" height="49"/>
</resources>
</document>