Commit 027ee0a9c88b64985e8dbe5e75f614c77f7deb1e

Authored by 葛建军
1 parent 2fe02865
Exists in newLive

no message

YouerLiveVideo/YouerLiveVideo/controllers/User/User.storyboard
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11762" systemVersion="16A323" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
  1 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2 +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11762" systemVersion="15G1217" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
3 3 <device id="retina4_7" orientation="portrait">
4 4 <adaptation id="fullscreen"/>
5 5 </device>
... ... @@ -172,7 +172,7 @@
172 172 <rect key="frame" x="0.0" y="20" width="375" height="577"/>
173 173 <color key="backgroundColor" red="0.93503493069999999" green="0.93562394380000002" blue="0.96585971120000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
174 174 <prototypes>
175   - <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="cell" id="6lf-ye-czT" customClass="AppSettingCell" customModule="YouerLiveVideo" customModuleProvider="target">
  175 + <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="cell" id="6lf-ye-czT" customClass="AppSettingCell" customModule="YouerLiveVideo" customModuleProvider="target">
176 176 <rect key="frame" x="0.0" y="28" width="375" height="44"/>
177 177 <autoresizingMask key="autoresizingMask"/>
178 178 <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6lf-ye-czT" id="EpN-M2-4mo">
... ... @@ -220,6 +220,12 @@
220 220 <state key="normal" title="退出当前账号">
221 221 <color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
222 222 </state>
  223 + <userDefinedRuntimeAttributes>
  224 + <userDefinedRuntimeAttribute type="boolean" keyPath="layer.masksToBounds" value="YES"/>
  225 + <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  226 + <integer key="value" value="5"/>
  227 + </userDefinedRuntimeAttribute>
  228 + </userDefinedRuntimeAttributes>
223 229 <connections>
224 230 <action selector="quitBtnClick:" destination="DOf-c9-nNw" eventType="touchUpInside" id="ySW-ZV-EoN"/>
225 231 </connections>
... ... @@ -472,6 +478,12 @@
472 478 <state key="normal" title="确认修改">
473 479 <color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
474 480 </state>
  481 + <userDefinedRuntimeAttributes>
  482 + <userDefinedRuntimeAttribute type="boolean" keyPath="layer.masksToBounds" value="YES"/>
  483 + <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  484 + <integer key="value" value="5"/>
  485 + </userDefinedRuntimeAttribute>
  486 + </userDefinedRuntimeAttributes>
475 487 <connections>
476 488 <action selector="agrenChangePasswordBtnClick:" destination="HIn-e8-Pzh" eventType="touchUpInside" id="qqi-Og-eWN"/>
477 489 </connections>
... ...
YouerLiveVideo/YouerLiveVideo/controllers/User/UserViewController.swift
... ... @@ -44,7 +44,7 @@ class UserViewController: UIViewController {
44 44  
45 45 @IBAction func userEditClcik(_ sender: Any) {
46 46 let vc = Story.instantiateViewControllerWithIdentifier("UserEditViewControllerVC", storyName: "User") as! UserEditViewController
47   - vc.title = "用户"
  47 + vc.title = "个人信息"
48 48 self.navigationController?.pushViewController(vc, animated: true)
49 49 }
50 50  
... ...