Skip to content

Commit f9e2056

Browse files
authored
Merge pull request #129 from sgdevcamp2025/iOS/feat/27/iOSUI
[iOS] feat/#27: 현재까지 작성한 코드
2 parents bf07779 + 8a56c04 commit f9e2056

File tree

200 files changed

+29992
-37
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+29992
-37
lines changed

src/ios/asyncgate_iOS/.DS_Store

6 KB
Binary file not shown.

src/ios/asyncgate_iOS/.gitignore

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode,cocoapods
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode,cocoapods
3+
4+
### CocoaPods ###
5+
## CocoaPods GitIgnore Template
6+
7+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
8+
# - Also handy if you have a large number of dependant pods
9+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
10+
Pods/
11+
12+
### Swift ###
13+
# Xcode
14+
#
15+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
16+
17+
## User settings
18+
xcuserdata/
19+
20+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
21+
*.xcscmblueprint
22+
*.xccheckout
23+
24+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
25+
build/
26+
DerivedData/
27+
*.moved-aside
28+
*.pbxuser
29+
!default.pbxuser
30+
*.mode1v3
31+
!default.mode1v3
32+
*.mode2v3
33+
!default.mode2v3
34+
*.perspectivev3
35+
!default.perspectivev3
36+
37+
## Obj-C/Swift specific
38+
*.hmap
39+
40+
## App packaging
41+
*.ipa
42+
*.dSYM.zip
43+
*.dSYM
44+
45+
## Playgrounds
46+
timeline.xctimeline
47+
playground.xcworkspace
48+
49+
# Swift Package Manager
50+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
51+
# Packages/
52+
# Package.pins
53+
# Package.resolved
54+
# *.xcodeproj
55+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
56+
# hence it is not needed unless you have added a package configuration file to your project
57+
# .swiftpm
58+
59+
.build/
60+
61+
# CocoaPods
62+
# We recommend against adding the Pods directory to your .gitignore. However
63+
# you should judge for yourself, the pros and cons are mentioned at:
64+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
65+
# Pods/
66+
# Add this line if you want to avoid checking in source code from the Xcode workspace
67+
# *.xcworkspace
68+
69+
# Carthage
70+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
71+
# Carthage/Checkouts
72+
73+
Carthage/Build/
74+
75+
# Accio dependency management
76+
Dependencies/
77+
.accio/
78+
79+
# fastlane
80+
# It is recommended to not store the screenshots in the git repo.
81+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
82+
# For more information about the recommended setup visit:
83+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
84+
85+
fastlane/report.xml
86+
fastlane/Preview.html
87+
fastlane/screenshots/**/*.png
88+
fastlane/test_output
89+
90+
# Code Injection
91+
# After new code Injection tools there's a generated folder /iOSInjectionProject
92+
# https://github.com/johnno1962/injectionforxcode
93+
94+
iOSInjectionProject/
95+
96+
### Xcode ###
97+
98+
## Xcode 8 and earlier
99+
100+
### Xcode Patch ###
101+
*.xcodeproj/*
102+
!*.xcodeproj/project.pbxproj
103+
!*.xcodeproj/xcshareddata/
104+
!*.xcodeproj/project.xcworkspace/
105+
!*.xcworkspace/contents.xcworkspacedata
106+
*.xcconfig
107+
/*.gcno
108+
**/xcshareddata/WorkspaceSettings.xcsettings
109+
.DS_Store
110+
*.xcuserstate
111+
*.xcconfig.xcconfig
112+
113+
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode,cocoapods

src/ios/asyncgate_iOS/Podfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Uncomment the next line to define a global platform for your project
2+
platform :ios, '17.6'
3+
4+
target 'asyncgate_iOS' do
5+
# Comment the next line if you don't want to use dynamic frameworks
6+
use_frameworks!
7+
8+
# Pods for asyncgate_iOS
9+
pod 'Alamofire', '~> 5.5'
10+
pod 'KeychainAccess'
11+
pod 'Starscream', '~> 4.0.6'
12+
target 'asyncgate_iOSTests' do
13+
inherit! :search_paths
14+
# Pods for testing
15+
end
16+
17+
target 'asyncgate_iOSUITests' do
18+
# Pods for UI testing
19+
end
20+
21+
end

src/ios/asyncgate_iOS/Podfile.lock

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
PODS:
2+
- Alamofire (5.10.2)
3+
- KeychainAccess (4.2.2)
4+
- Starscream (4.0.8)
5+
6+
DEPENDENCIES:
7+
- Alamofire (~> 5.5)
8+
- KeychainAccess
9+
- Starscream (~> 4.0.6)
10+
11+
SPEC REPOS:
12+
trunk:
13+
- Alamofire
14+
- KeychainAccess
15+
- Starscream
16+
17+
SPEC CHECKSUMS:
18+
Alamofire: 7193b3b92c74a07f85569e1a6c4f4237291e7496
19+
KeychainAccess: c0c4f7f38f6fc7bbe58f5702e25f7bd2f65abf51
20+
Starscream: 19b5533ddb925208db698f0ac508a100b884a1b9
21+
22+
PODFILE CHECKSUM: d5b33e6604d89dac19a1810a1f3fcea6c1ea8bef
23+
24+
COCOAPODS: 1.16.2

src/ios/asyncgate_iOS/Pods/Alamofire/LICENSE

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)