Skip to content

Commit

Permalink
➕[ADD] 2nd seminar update
Browse files Browse the repository at this point in the history
  • Loading branch information
heerucan committed Oct 9, 2021
1 parent bc61fda commit 7ad02e9
Show file tree
Hide file tree
Showing 12 changed files with 454 additions and 17 deletions.
20 changes: 20 additions & 0 deletions Sopt29th-Seminar/Sopt29th-Seminar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
5B4F02A727082AD200C04D75 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5B4F02A627082AD200C04D75 /* Assets.xcassets */; };
5B4F02AA27082AD200C04D75 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5B4F02A827082AD200C04D75 /* LaunchScreen.storyboard */; };
5B4F02B2270837EA00C04D75 /* SecondViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4F02B1270837EA00C04D75 /* SecondViewController.swift */; };
5B8799322711600600148563 /* AutoLayout.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5B8799312711600600148563 /* AutoLayout.storyboard */; };
5B87993427117C5400148563 /* Tabbar.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5B87993327117C5400148563 /* Tabbar.storyboard */; };
5B8799362711841D00148563 /* CustomTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B8799352711841D00148563 /* CustomTabBarController.swift */; };
5B8799382711842700148563 /* OrangeVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B8799372711842700148563 /* OrangeVC.swift */; };
5B87993A2711844900148563 /* PurpleVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B8799392711844900148563 /* PurpleVC.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -30,6 +35,11 @@
5B4F02A927082AD200C04D75 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
5B4F02AB27082AD200C04D75 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5B4F02B1270837EA00C04D75 /* SecondViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecondViewController.swift; sourceTree = "<group>"; };
5B8799312711600600148563 /* AutoLayout.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = AutoLayout.storyboard; sourceTree = "<group>"; };
5B87993327117C5400148563 /* Tabbar.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Tabbar.storyboard; sourceTree = "<group>"; };
5B8799352711841D00148563 /* CustomTabBarController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomTabBarController.swift; sourceTree = "<group>"; };
5B8799372711842700148563 /* OrangeVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrangeVC.swift; sourceTree = "<group>"; };
5B8799392711844900148563 /* PurpleVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PurpleVC.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -65,6 +75,8 @@
children = (
5B4F02A327082ACD00C04D75 /* Main.storyboard */,
5B4F02A827082AD200C04D75 /* LaunchScreen.storyboard */,
5B8799312711600600148563 /* AutoLayout.storyboard */,
5B87993327117C5400148563 /* Tabbar.storyboard */,
);
path = Storyboard;
sourceTree = "<group>";
Expand Down Expand Up @@ -103,6 +115,9 @@
5B4F02B1270837EA00C04D75 /* SecondViewController.swift */,
5B2B460D2708408A0074B585 /* FirstViewController.swift */,
5B2B460F270840930074B585 /* ResultViewController.swift */,
5B8799352711841D00148563 /* CustomTabBarController.swift */,
5B8799372711842700148563 /* OrangeVC.swift */,
5B8799392711844900148563 /* PurpleVC.swift */,
);
path = "View Controller";
sourceTree = "<group>";
Expand Down Expand Up @@ -174,9 +189,11 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5B87993427117C5400148563 /* Tabbar.storyboard in Resources */,
5B4F02AA27082AD200C04D75 /* LaunchScreen.storyboard in Resources */,
5B4F02A727082AD200C04D75 /* Assets.xcassets in Resources */,
5B4F02A527082ACD00C04D75 /* Main.storyboard in Resources */,
5B8799322711600600148563 /* AutoLayout.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -188,10 +205,13 @@
buildActionMask = 2147483647;
files = (
5B4F02B2270837EA00C04D75 /* SecondViewController.swift in Sources */,
5B8799362711841D00148563 /* CustomTabBarController.swift in Sources */,
5B4F02A227082ACD00C04D75 /* ViewController.swift in Sources */,
5B2B4610270840930074B585 /* ResultViewController.swift in Sources */,
5B4F029E27082ACD00C04D75 /* AppDelegate.swift in Sources */,
5B87993A2711844900148563 /* PurpleVC.swift in Sources */,
5B4F02A027082ACD00C04D75 /* SceneDelegate.swift in Sources */,
5B8799382711842700148563 /* OrangeVC.swift in Sources */,
5B2B460E2708408A0074B585 /* FirstViewController.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "SOPT_logo.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "SOPT_logo@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "SOPT_logo@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Sopt29th-Seminar/Sopt29th-Seminar/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<key>UISceneDelegateClassName</key>
<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
<key>UISceneStoryboardFile</key>
<string>Main</string>
<string>Tabbar</string>
</dict>
</array>
</dict>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="19162" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="LBw-k4-WZE">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="19144"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="System colors in document resources" minToolsVersion="11.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="s0d-6b-0kx">
<objects>
<viewController id="Y6W-OH-hqX" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="5EZ-qb-Rvc">
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JPw-Ro-gax" userLabel="YellowView">
<rect key="frame" x="20" y="74" width="374" height="200"/>
<color key="backgroundColor" systemColor="systemYellowColor"/>
<constraints>
<constraint firstAttribute="height" constant="200" id="eAq-aB-ZsR"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ugz-lY-YEi" userLabel="GreenView">
<rect key="frame" x="20" y="324" width="150" height="522"/>
<color key="backgroundColor" systemColor="systemGreenColor"/>
<constraints>
<constraint firstAttribute="width" constant="150" id="K2c-Kf-dki"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RYd-bq-fOo" userLabel="BlueView">
<rect key="frame" x="200" y="354" width="112" height="522"/>
<color key="backgroundColor" systemColor="systemBlueColor"/>
</view>
</subviews>
<viewLayoutGuide key="safeArea" id="vDu-zF-Fre"/>
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
<constraints>
<constraint firstItem="JPw-Ro-gax" firstAttribute="leading" secondItem="5EZ-qb-Rvc" secondAttribute="leading" constant="20" id="6F7-xm-AEG"/>
<constraint firstItem="RYd-bq-fOo" firstAttribute="leading" secondItem="Ugz-lY-YEi" secondAttribute="trailing" constant="30" id="Bay-5H-xoc"/>
<constraint firstItem="JPw-Ro-gax" firstAttribute="top" secondItem="vDu-zF-Fre" secondAttribute="top" constant="30" id="DLv-Qe-h21"/>
<constraint firstItem="RYd-bq-fOo" firstAttribute="width" secondItem="JPw-Ro-gax" secondAttribute="width" multiplier="0.3" id="Tx2-lf-zg4"/>
<constraint firstAttribute="trailing" secondItem="JPw-Ro-gax" secondAttribute="trailing" constant="20" id="WBy-l9-7fz"/>
<constraint firstAttribute="bottom" secondItem="Ugz-lY-YEi" secondAttribute="bottom" constant="50" id="ZU2-jk-DgE"/>
<constraint firstItem="Ugz-lY-YEi" firstAttribute="leading" secondItem="5EZ-qb-Rvc" secondAttribute="leading" constant="20" id="Zc5-It-omI"/>
<constraint firstItem="RYd-bq-fOo" firstAttribute="height" secondItem="Ugz-lY-YEi" secondAttribute="height" id="dRe-2X-5hF"/>
<constraint firstItem="Ugz-lY-YEi" firstAttribute="top" secondItem="JPw-Ro-gax" secondAttribute="bottom" constant="50" id="s7D-Jo-0e7"/>
<constraint firstItem="RYd-bq-fOo" firstAttribute="top" secondItem="JPw-Ro-gax" secondAttribute="bottom" constant="80" id="wff-He-aLY"/>
</constraints>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="Ief-a0-LHa" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="124.6376811594203" y="67.633928571428569"/>
</scene>
<!--View Controller-->
<scene sceneID="qHH-jb-YXL">
<objects>
<viewController id="LBw-k4-WZE" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="JN4-NQ-Nkk">
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="ylN-T9-ybS">
<rect key="frame" x="20" y="20" width="374" height="856"/>
<subviews>
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="PvT-pG-69U">
<rect key="frame" x="0.0" y="0.0" width="374" height="285.5"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RF0-EL-yaK">
<rect key="frame" x="0.0" y="0.0" width="124.5" height="285.5"/>
<color key="backgroundColor" systemColor="tintColor"/>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="NDb-ZK-toZ">
<rect key="frame" x="124.5" y="0.0" width="125" height="285.5"/>
<color key="backgroundColor" systemColor="systemGreenColor"/>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="q7S-Ms-dsp">
<rect key="frame" x="249.5" y="0.0" width="124.5" height="285.5"/>
<color key="backgroundColor" systemColor="systemIndigoColor"/>
</view>
</subviews>
</stackView>
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="pU8-e1-nTD">
<rect key="frame" x="0.0" y="285.5" width="374" height="285"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="P1h-xJ-LHU">
<rect key="frame" x="0.0" y="0.0" width="124.5" height="285"/>
<color key="backgroundColor" systemColor="systemOrangeColor"/>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jfz-Gt-ePa">
<rect key="frame" x="124.5" y="0.0" width="125" height="285"/>
<color key="backgroundColor" systemColor="systemYellowColor"/>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Jmx-ks-z1N">
<rect key="frame" x="249.5" y="0.0" width="124.5" height="285"/>
<color key="backgroundColor" red="1" green="0.52184699440798488" blue="0.85051828801019258" alpha="1" colorSpace="custom" customColorSpace="displayP3"/>
</view>
</subviews>
</stackView>
<stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="LAj-2e-UGH">
<rect key="frame" x="0.0" y="570.5" width="374" height="285.5"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="IRJ-Jn-T6U">
<rect key="frame" x="0.0" y="0.0" width="124.5" height="285.5"/>
<color key="backgroundColor" systemColor="systemRedColor"/>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="faL-ud-Amo">
<rect key="frame" x="124.5" y="0.0" width="125" height="285.5"/>
<color key="backgroundColor" systemColor="systemTealColor"/>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JDX-34-ZYc">
<rect key="frame" x="249.5" y="0.0" width="124.5" height="285.5"/>
<color key="backgroundColor" systemColor="separatorColor"/>
</view>
</subviews>
</stackView>
</subviews>
</stackView>
</subviews>
<viewLayoutGuide key="safeArea" id="QRp-mM-JUH"/>
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
<constraints>
<constraint firstItem="ylN-T9-ybS" firstAttribute="leading" secondItem="JN4-NQ-Nkk" secondAttribute="leading" constant="20" id="3vh-lc-QaU"/>
<constraint firstAttribute="trailing" secondItem="ylN-T9-ybS" secondAttribute="trailing" constant="20" id="EQJ-Eb-8rD"/>
<constraint firstItem="ylN-T9-ybS" firstAttribute="top" secondItem="JN4-NQ-Nkk" secondAttribute="top" constant="20" id="WKJ-bK-0KF"/>
<constraint firstAttribute="bottom" secondItem="ylN-T9-ybS" secondAttribute="bottom" constant="20" id="kXW-a2-mxh"/>
</constraints>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="M5D-Yi-ww0" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="965" y="68"/>
</scene>
</scenes>
<resources>
<systemColor name="separatorColor">
<color red="0.23529411764705882" green="0.23529411764705882" blue="0.2627450980392157" alpha="0.28999999999999998" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
<systemColor name="systemBackgroundColor">
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
</systemColor>
<systemColor name="systemBlueColor">
<color red="0.0" green="0.47843137254901963" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
<systemColor name="systemGreenColor">
<color red="0.20392156862745098" green="0.7803921568627451" blue="0.34901960784313724" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
<systemColor name="systemIndigoColor">
<color red="0.34509803921568627" green="0.33725490196078434" blue="0.83921568627450982" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
<systemColor name="systemOrangeColor">
<color red="1" green="0.58431372549019611" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
<systemColor name="systemRedColor">
<color red="1" green="0.23137254901960785" blue="0.18823529411764706" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
<systemColor name="systemTealColor">
<color red="0.18823529411764706" green="0.69019607843137254" blue="0.7803921568627451" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
<systemColor name="systemYellowColor">
<color red="1" green="0.80000000000000004" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
<systemColor name="tintColor">
<color red="0.0" green="0.47843137254901963" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</systemColor>
</resources>
</document>
Loading

0 comments on commit 7ad02e9

Please sign in to comment.