熊竹 7 jaren geleden
bovenliggende
commit
41c134c787

BIN
model/Classes/Controllers/Controller/MyTeamVC/.DS_Store


+ 17 - 0
model/Classes/Controllers/Controller/MyTeamVC/MyMemberController.h

@@ -0,0 +1,17 @@
+//
+//  MyTeamController.h
+//  model
+//
+//  Created by Drew on 2018/10/29.
+//  Copyright © 2018 Mine. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface MyMemberController : UIViewController
+
+@end
+
+NS_ASSUME_NONNULL_END

+ 85 - 0
model/Classes/Controllers/Controller/MyTeamVC/MyMemberController.m

@@ -0,0 +1,85 @@
+//
+//  MyTeamController.m
+//  model
+//
+//  Created by Drew on 2018/10/29.
+//  Copyright © 2018 Mine. All rights reserved.
+//
+
+#import "MyMemberController.h"
+#import "MyTeamCell.h"
+#import "MyTeamHeader.h"
+
+static NSString *cellId = @"MyTeamCell";
+
+@interface MyMemberController () <UITableViewDelegate, UITableViewDataSource>
+@property (weak, nonatomic) IBOutlet UITableView *tableView;
+@property(nonatomic,strong) NSMutableArray* data;
+@property(nonatomic, strong) UIView* tableHeader;
+@end
+
+@implementation MyMemberController
+
+- (void)viewDidLoad {
+    [super viewDidLoad];
+    UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
+    btn.frame = CGRectMake(0, 0, 40, 40);
+    [btn setImage:[UIImage imageNamed:@"backBtn"] forState:UIControlStateNormal];
+    btn.imageEdgeInsets = UIEdgeInsetsMake(0, -20, 0, 0);
+    [btn addTarget:self action:@selector(backClick) forControlEvents:UIControlEventTouchUpInside];
+    UIBarButtonItem *leftItem = [[UIBarButtonItem alloc] initWithCustomView:btn];
+    UIBarButtonItem *nagetiveSpacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
+    nagetiveSpacer.width = -12;//这个值可以根据自己需要自己调整
+    self.navigationItem.leftBarButtonItems = @[nagetiveSpacer, leftItem];
+    self.navigationItem.title = @"推广明细";
+    
+    self.tableView.delegate = self;
+    self.tableView.dataSource = self;
+    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
+    self.tableView.tableHeaderView = self.tableHeader;
+}
+
+- (void)backClick {
+    [self.navigationController popViewControllerAnimated:YES];
+}
+
+- (NSMutableArray *)data {
+    if (!_data) {
+        _data = [NSMutableArray arrayWithCapacity:0];
+    }
+    return _data;
+}
+
+- (UIView *)tableHeader {
+    if(!_tableHeader){
+        _tableHeader = [[MyTeamHeader alloc] init];
+        _tableHeader.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 107);
+    }
+    return _tableHeader;
+}
+
+# pragma mark - TableView Delegate
+-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
+    return 1;
+}
+
+-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
+//    return self.data.count;
+    return 10;
+}
+
+-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+    MyTeamCell *cell = [self.tableView dequeueReusableCellWithIdentifier:cellId];
+    if (!cell) {
+        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:cellId owner:self options:nil];
+        cell = [nib objectAtIndex:0];
+        cell.selectionStyle = UITableViewCellSelectionStyleNone;
+    }
+    return cell;
+}
+
+- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
+    return 70;
+}
+# pragma mark -
+@end

+ 40 - 0
model/Classes/Controllers/Controller/MyTeamVC/MyMemberController.xib

@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14313.18" 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="14283.14"/>
+        <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" customClass="MyMemberController">
+            <connections>
+                <outlet property="tableView" destination="s3n-ZJ-rfK" id="CoJ-Rd-1Uz"/>
+                <outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/>
+            </connections>
+        </placeholder>
+        <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
+        <view clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="i5M-Pr-FkT">
+            <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
+            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+            <subviews>
+                <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="s3n-ZJ-rfK">
+                    <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
+                    <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                </tableView>
+            </subviews>
+            <color key="backgroundColor" red="0.94901960784313721" green="0.95686274509803915" blue="0.96078431372549022" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
+            <constraints>
+                <constraint firstItem="Q5M-cg-NOt" firstAttribute="top" secondItem="s3n-ZJ-rfK" secondAttribute="top" constant="20" id="98r-NT-RZn"/>
+                <constraint firstItem="Q5M-cg-NOt" firstAttribute="bottom" secondItem="s3n-ZJ-rfK" secondAttribute="bottom" id="cMA-Sc-3HN"/>
+                <constraint firstItem="s3n-ZJ-rfK" firstAttribute="leading" secondItem="Q5M-cg-NOt" secondAttribute="leading" id="cZx-pE-lor"/>
+                <constraint firstItem="Q5M-cg-NOt" firstAttribute="trailing" secondItem="s3n-ZJ-rfK" secondAttribute="trailing" id="cpD-rl-uMd"/>
+            </constraints>
+            <viewLayoutGuide key="safeArea" id="Q5M-cg-NOt"/>
+            <point key="canvasLocation" x="133.59999999999999" y="154.27286356821591"/>
+        </view>
+    </objects>
+</document>

+ 17 - 0
model/Classes/Controllers/Controller/MyTeamVC/MyModelController.h

@@ -0,0 +1,17 @@
+//
+//  MyTeamController.h
+//  model
+//
+//  Created by Drew on 2018/10/29.
+//  Copyright © 2018 Mine. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface MyModelController : UIViewController
+
+@end
+
+NS_ASSUME_NONNULL_END

+ 85 - 0
model/Classes/Controllers/Controller/MyTeamVC/MyModelController.m

@@ -0,0 +1,85 @@
+//
+//  MyTeamController.m
+//  model
+//
+//  Created by Drew on 2018/10/29.
+//  Copyright © 2018 Mine. All rights reserved.
+//
+
+#import "MyModelController.h"
+#import "MyTeamCell.h"
+#import "MyTeamHeader.h"
+
+static NSString *cellId = @"MyTeamCell";
+
+@interface MyModelController () <UITableViewDelegate, UITableViewDataSource>
+@property (weak, nonatomic) IBOutlet UITableView *tableView;
+@property(nonatomic,strong) NSMutableArray* data;
+@property(nonatomic, strong) UIView* tableHeader;
+@end
+
+@implementation MyModelController
+
+- (void)viewDidLoad {
+    [super viewDidLoad];
+    UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
+    btn.frame = CGRectMake(0, 0, 40, 40);
+    [btn setImage:[UIImage imageNamed:@"backBtn"] forState:UIControlStateNormal];
+    btn.imageEdgeInsets = UIEdgeInsetsMake(0, -20, 0, 0);
+    [btn addTarget:self action:@selector(backClick) forControlEvents:UIControlEventTouchUpInside];
+    UIBarButtonItem *leftItem = [[UIBarButtonItem alloc] initWithCustomView:btn];
+    UIBarButtonItem *nagetiveSpacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
+    nagetiveSpacer.width = -12;//这个值可以根据自己需要自己调整
+    self.navigationItem.leftBarButtonItems = @[nagetiveSpacer, leftItem];
+    self.navigationItem.title = @"推广明细";
+    
+    self.tableView.delegate = self;
+    self.tableView.dataSource = self;
+    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
+    self.tableView.tableHeaderView = self.tableHeader;
+}
+
+- (void)backClick {
+    [self.navigationController popViewControllerAnimated:YES];
+}
+
+- (NSMutableArray *)data {
+    if (!_data) {
+        _data = [NSMutableArray arrayWithCapacity:0];
+    }
+    return _data;
+}
+
+- (UIView *)tableHeader {
+    if(!_tableHeader){
+        _tableHeader = [[MyTeamHeader alloc] init];
+        _tableHeader.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 107);
+    }
+    return _tableHeader;
+}
+
+# pragma mark - TableView Delegate
+-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
+    return 1;
+}
+
+-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
+//    return self.data.count;
+    return 10;
+}
+
+-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+    MyTeamCell *cell = [self.tableView dequeueReusableCellWithIdentifier:cellId];
+    if (!cell) {
+        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:cellId owner:self options:nil];
+        cell = [nib objectAtIndex:0];
+        cell.selectionStyle = UITableViewCellSelectionStyleNone;
+    }
+    return cell;
+}
+
+- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
+    return 70;
+}
+# pragma mark -
+@end

+ 40 - 0
model/Classes/Controllers/Controller/MyTeamVC/MyModelController.xib

@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14313.18" 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="14283.14"/>
+        <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" customClass="MyModelController">
+            <connections>
+                <outlet property="tableView" destination="s3n-ZJ-rfK" id="CoJ-Rd-1Uz"/>
+                <outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/>
+            </connections>
+        </placeholder>
+        <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
+        <view clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="i5M-Pr-FkT">
+            <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
+            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+            <subviews>
+                <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="s3n-ZJ-rfK">
+                    <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
+                    <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                </tableView>
+            </subviews>
+            <color key="backgroundColor" red="0.94901960784313721" green="0.95686274509803915" blue="0.96078431372549022" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
+            <constraints>
+                <constraint firstItem="Q5M-cg-NOt" firstAttribute="top" secondItem="s3n-ZJ-rfK" secondAttribute="top" constant="20" id="98r-NT-RZn"/>
+                <constraint firstItem="Q5M-cg-NOt" firstAttribute="bottom" secondItem="s3n-ZJ-rfK" secondAttribute="bottom" id="cMA-Sc-3HN"/>
+                <constraint firstItem="s3n-ZJ-rfK" firstAttribute="leading" secondItem="Q5M-cg-NOt" secondAttribute="leading" id="cZx-pE-lor"/>
+                <constraint firstItem="Q5M-cg-NOt" firstAttribute="trailing" secondItem="s3n-ZJ-rfK" secondAttribute="trailing" id="cpD-rl-uMd"/>
+            </constraints>
+            <viewLayoutGuide key="safeArea" id="Q5M-cg-NOt"/>
+            <point key="canvasLocation" x="133.59999999999999" y="154.27286356821591"/>
+        </view>
+    </objects>
+</document>

+ 11 - 56
model/Classes/Controllers/Controller/MyTeamVC/MyTeamController.m

@@ -7,79 +7,34 @@
 //
 
 #import "MyTeamController.h"
-#import "MyTeamCell.h"
-#import "MyTeamHeader.h"
+#import "TabControl.h"
 
-static NSString *cellId = @"MyTeamCell";
+@interface MyTeamController()
 
-@interface MyTeamController () <UITableViewDelegate, UITableViewDataSource>
-@property (weak, nonatomic) IBOutlet UITableView *tableView;
-@property(nonatomic,strong) NSMutableArray* data;
-@property(nonatomic, strong) UIView* tableHeader;
 @end
 
 @implementation MyTeamController
 
 - (void)viewDidLoad {
     [super viewDidLoad];
-    UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
-    btn.frame = CGRectMake(0, 0, 40, 40);
-    [btn setImage:[UIImage imageNamed:@"backBtn"] forState:UIControlStateNormal];
-    btn.imageEdgeInsets = UIEdgeInsetsMake(0, -20, 0, 0);
-    [btn addTarget:self action:@selector(backClick) forControlEvents:UIControlEventTouchUpInside];
-    UIBarButtonItem *leftItem = [[UIBarButtonItem alloc] initWithCustomView:btn];
-    UIBarButtonItem *nagetiveSpacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
-    nagetiveSpacer.width = -12;//这个值可以根据自己需要自己调整
-    self.navigationItem.leftBarButtonItems = @[nagetiveSpacer, leftItem];
-    self.navigationItem.title = @"推广明细";
-    
-    self.tableView.delegate = self;
-    self.tableView.dataSource = self;
-    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
-    self.tableView.tableHeaderView = self.tableHeader;
-}
 
-- (void)backClick {
-    [self.navigationController popViewControllerAnimated:YES];
 }
 
-- (NSMutableArray *)data {
-    if (!_data) {
-        _data = [NSMutableArray arrayWithCapacity:0];
-    }
-    return _data;
+- (void)viewWillAppear:(BOOL)animated {
+    [super viewWillAppear:animated];
+    [self.navigationController setNavigationBarHidden:YES animated:YES];
 }
 
-- (UIView *)tableHeader {
-    if(!_tableHeader){
-        _tableHeader = [[MyTeamHeader alloc] init];
-        _tableHeader.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 107);
-    }
-    return _tableHeader;
+- (void)viewWillDisappear:(BOOL)animated {
+    [super viewWillDisappear:animated];
+    [self.navigationController setNavigationBarHidden:NO animated:YES];
 }
 
-# pragma mark - TableView Delegate
--(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
-    return 1;
+- (IBAction)backClick:(id)sender {
+    [self.navigationController popViewControllerAnimated:YES];
 }
 
--(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
-//    return self.data.count;
-    return 10;
-}
 
--(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-    MyTeamCell *cell = [self.tableView dequeueReusableCellWithIdentifier:cellId];
-    if (!cell) {
-        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:cellId owner:self options:nil];
-        cell = [nib objectAtIndex:0];
-        cell.selectionStyle = UITableViewCellSelectionStyleNone;
-    }
-    return cell;
-}
 
-- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
-    return 70;
-}
-# pragma mark -
+
 @end

+ 68 - 12
model/Classes/Controllers/Controller/MyTeamVC/MyTeamController.xib

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="14313.18" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
-    <device id="retina4_7" orientation="portrait">
+    <device id="retina5_9" orientation="portrait">
         <adaptation id="fullscreen"/>
     </device>
     <dependencies>
@@ -12,29 +12,85 @@
     <objects>
         <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="MyTeamController">
             <connections>
-                <outlet property="tableView" destination="s3n-ZJ-rfK" id="CoJ-Rd-1Uz"/>
                 <outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/>
             </connections>
         </placeholder>
         <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
         <view clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="i5M-Pr-FkT">
-            <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
+            <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
             <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
             <subviews>
-                <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="s3n-ZJ-rfK">
-                    <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
+                <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ouz-JL-FxC">
+                    <rect key="frame" x="0.0" y="0.0" width="375" height="88"/>
+                    <color key="backgroundColor" red="0.94901960784313721" green="0.95686274509803915" blue="0.96078431372549022" alpha="0.0" colorSpace="calibratedRGB"/>
+                </view>
+                <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TWZ-qV-gIL">
+                    <rect key="frame" x="0.0" y="44" width="375" height="44"/>
+                    <subviews>
+                        <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="d3i-vA-Al0">
+                            <rect key="frame" x="0.0" y="1" width="53" height="42"/>
+                            <inset key="contentEdgeInsets" minX="24" minY="10" maxX="20" maxY="10"/>
+                            <state key="normal" image="backBtn"/>
+                            <connections>
+                                <action selector="backClick:" destination="-1" eventType="touchUpInside" id="xK9-7x-08P"/>
+                            </connections>
+                        </button>
+                        <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="5Ae-xL-FI1" customClass="TabControl">
+                            <rect key="frame" x="97.666666666666686" y="5" width="180" height="34"/>
+                            <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                            <constraints>
+                                <constraint firstAttribute="height" constant="34" id="6X6-0x-obP"/>
+                                <constraint firstAttribute="width" constant="180" id="BXk-da-OKM"/>
+                            </constraints>
+                        </view>
+                    </subviews>
                     <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
-                </tableView>
+                    <constraints>
+                        <constraint firstItem="d3i-vA-Al0" firstAttribute="leading" secondItem="TWZ-qV-gIL" secondAttribute="leading" id="22x-Hi-TTs"/>
+                        <constraint firstItem="d3i-vA-Al0" firstAttribute="centerY" secondItem="TWZ-qV-gIL" secondAttribute="centerY" id="A5b-XD-jlN"/>
+                        <constraint firstItem="5Ae-xL-FI1" firstAttribute="centerX" secondItem="TWZ-qV-gIL" secondAttribute="centerX" id="Z3T-Sg-Wmp"/>
+                        <constraint firstItem="5Ae-xL-FI1" firstAttribute="centerY" secondItem="TWZ-qV-gIL" secondAttribute="centerY" id="s7h-Xb-xFa"/>
+                        <constraint firstAttribute="height" constant="44" id="tE0-rY-eUI"/>
+                    </constraints>
+                </view>
+                <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="OAU-8x-3Qa">
+                    <rect key="frame" x="0.0" y="88" width="375" height="690"/>
+                    <subviews>
+                        <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rDO-bN-y02">
+                            <rect key="frame" x="0.0" y="0.0" width="375" height="690"/>
+                            <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                        </view>
+                    </subviews>
+                    <constraints>
+                        <constraint firstAttribute="bottom" secondItem="rDO-bN-y02" secondAttribute="bottom" id="1hR-kP-yll"/>
+                        <constraint firstItem="rDO-bN-y02" firstAttribute="leading" secondItem="OAU-8x-3Qa" secondAttribute="leading" id="F1b-d5-CZ6"/>
+                        <constraint firstAttribute="trailing" secondItem="rDO-bN-y02" secondAttribute="trailing" id="JeR-89-ZS4"/>
+                        <constraint firstItem="rDO-bN-y02" firstAttribute="centerY" secondItem="OAU-8x-3Qa" secondAttribute="centerY" id="Lwt-hA-my6"/>
+                        <constraint firstItem="rDO-bN-y02" firstAttribute="centerX" secondItem="OAU-8x-3Qa" secondAttribute="centerX" id="PCh-wr-e0P"/>
+                        <constraint firstItem="rDO-bN-y02" firstAttribute="top" secondItem="OAU-8x-3Qa" secondAttribute="top" id="UwV-fC-CXw"/>
+                    </constraints>
+                </scrollView>
             </subviews>
             <color key="backgroundColor" red="0.94901960784313721" green="0.95686274509803915" blue="0.96078431372549022" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
             <constraints>
-                <constraint firstItem="Q5M-cg-NOt" firstAttribute="top" secondItem="s3n-ZJ-rfK" secondAttribute="top" constant="20" id="98r-NT-RZn"/>
-                <constraint firstItem="Q5M-cg-NOt" firstAttribute="bottom" secondItem="s3n-ZJ-rfK" secondAttribute="bottom" id="cMA-Sc-3HN"/>
-                <constraint firstItem="s3n-ZJ-rfK" firstAttribute="leading" secondItem="Q5M-cg-NOt" secondAttribute="leading" id="cZx-pE-lor"/>
-                <constraint firstItem="Q5M-cg-NOt" firstAttribute="trailing" secondItem="s3n-ZJ-rfK" secondAttribute="trailing" id="cpD-rl-uMd"/>
+                <constraint firstItem="TWZ-qV-gIL" firstAttribute="leading" secondItem="36o-HT-D27" secondAttribute="leading" id="0AO-wP-hbT"/>
+                <constraint firstItem="36o-HT-D27" firstAttribute="trailing" secondItem="OAU-8x-3Qa" secondAttribute="trailing" id="1eL-i4-mD3"/>
+                <constraint firstItem="OAU-8x-3Qa" firstAttribute="leading" secondItem="36o-HT-D27" secondAttribute="leading" id="4sS-HI-5qe"/>
+                <constraint firstItem="36o-HT-D27" firstAttribute="bottom" secondItem="OAU-8x-3Qa" secondAttribute="bottom" id="FM1-9i-HHL"/>
+                <constraint firstItem="TWZ-qV-gIL" firstAttribute="trailing" secondItem="36o-HT-D27" secondAttribute="trailing" id="LN5-vo-Lib"/>
+                <constraint firstItem="ouz-JL-FxC" firstAttribute="leading" secondItem="36o-HT-D27" secondAttribute="leading" id="Ltf-uf-klf"/>
+                <constraint firstItem="36o-HT-D27" firstAttribute="top" secondItem="ouz-JL-FxC" secondAttribute="bottom" constant="-44" id="cth-9R-5mF"/>
+                <constraint firstItem="36o-HT-D27" firstAttribute="trailing" secondItem="ouz-JL-FxC" secondAttribute="trailing" id="fV8-Hb-bwE"/>
+                <constraint firstItem="OAU-8x-3Qa" firstAttribute="top" secondItem="ouz-JL-FxC" secondAttribute="bottom" id="hqc-V0-8dT"/>
+                <constraint firstItem="ouz-JL-FxC" firstAttribute="top" secondItem="i5M-Pr-FkT" secondAttribute="top" id="nqa-VO-n8A"/>
+                <constraint firstItem="TWZ-qV-gIL" firstAttribute="top" secondItem="36o-HT-D27" secondAttribute="top" id="zHo-Or-hJ2"/>
             </constraints>
-            <viewLayoutGuide key="safeArea" id="Q5M-cg-NOt"/>
-            <point key="canvasLocation" x="133.59999999999999" y="154.27286356821591"/>
+            <nil key="simulatedTopBarMetrics"/>
+            <viewLayoutGuide key="safeArea" id="36o-HT-D27"/>
+            <point key="canvasLocation" x="133.59999999999999" y="153.69458128078819"/>
         </view>
     </objects>
+    <resources>
+        <image name="backBtn" width="9" height="16"/>
+    </resources>
 </document>