├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.kr.md ├── README.md ├── StipopDemo.xcodeproj └── project.pbxproj └── StipopDemo ├── AppDelegate.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── 100.png │ ├── 1024.png │ ├── 114.png │ ├── 120.png │ ├── 128.png │ ├── 144.png │ ├── 152.png │ ├── 16.png │ ├── 167.png │ ├── 172.png │ ├── 180.png │ ├── 196.png │ ├── 20.png │ ├── 216.png │ ├── 256.png │ ├── 29.png │ ├── 32.png │ ├── 40.png │ ├── 48.png │ ├── 50.png │ ├── 512.png │ ├── 55.png │ ├── 57.png │ ├── 58.png │ ├── 60.png │ ├── 64.png │ ├── 72.png │ ├── 76.png │ ├── 80.png │ ├── 87.png │ ├── 88.png │ └── Contents.json ├── Colors │ ├── Contents.json │ ├── Default.colorset │ │ └── Contents.json │ ├── DefaultReverse.colorset │ │ └── Contents.json │ ├── StipopChatBackground.colorset │ │ └── Contents.json │ ├── StipopMain.colorset │ │ └── Contents.json │ ├── StipopTextFieldBackground.colorset │ │ └── Contents.json │ ├── StipopTextFieldBackgroundStroke.colorset │ │ └── Contents.json │ └── StipopTypingViewLayoutBackground.colorset │ │ └── Contents.json ├── Contents.json ├── bg.imageset │ ├── Contents.json │ ├── bg.png │ ├── bg@2x.png │ └── bg@3x.png ├── icGo.imageset │ ├── Contents.json │ ├── icGo.png │ ├── icGo@2x.png │ └── icGo@3x.png ├── icMore.imageset │ ├── Contents.json │ ├── icMore.png │ ├── icMore@2x.png │ └── icMore@3x.png ├── icSendActive.imageset │ ├── Contents.json │ ├── icSendActive.png │ ├── icSendActive@2x.png │ └── icSendActive@3x.png ├── icSendNormal.imageset │ ├── Contents.json │ ├── icSendNormal.png │ ├── icSendNormal@2x.png │ └── icSendNormal@3x.png ├── icSsvNormal.imageset │ ├── Contents.json │ ├── icSsvNormal.png │ ├── icSsvNormal@2x.png │ └── icSsvNormal@3x.png ├── imgStipop.imageset │ ├── Contents.json │ ├── imgStipop.png │ ├── imgStipop@2x.png │ └── imgStipop@3x.png ├── jay.imageset │ ├── Contents.json │ └── jay.svg └── logo.imageset │ ├── Contents.json │ ├── logo.png │ ├── logo@2x.png │ └── logo@3x.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Enums └── ColorEnum.swift ├── Extensions └── UIView+Extensions.swift ├── Info.plist ├── Model └── SPChat.swift ├── SceneDelegate.swift ├── StipopAuth ├── DemoSAuthAPI.swift ├── DemoSAuthAPI_access_token.swift └── DemoSAuthManager.swift ├── View ├── SPDChatroomViewController │ ├── SPDChatroomViewController.storyboard │ ├── SPDChatroomViewController.swift │ └── Views │ │ ├── SPDChatroomHeaderCell.swift │ │ ├── SPDChatroomNavigationTitleView.swift │ │ ├── SPDCounterExecuteChatCell.swift │ │ ├── SPDCounterStickerChatCell.swift │ │ ├── SPDCounterTextChatCell.swift │ │ ├── SPDMyStickerChatCell.swift │ │ └── SPDMyTextChatCell.swift └── SPDMainViewController │ └── SPDMainViewController.swift ├── fr.lproj ├── LaunchScreen.strings └── Main.strings ├── hi.lproj ├── LaunchScreen.strings └── Main.strings ├── ko.lproj ├── LaunchScreen.strings └── Main.strings ├── vi.lproj ├── LaunchScreen.strings └── Main.strings ├── zh-Hans.lproj ├── LaunchScreen.strings └── Main.strings └── zh-Hant.lproj ├── LaunchScreen.strings └── Main.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/Package.swift -------------------------------------------------------------------------------- /README.kr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/README.kr.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/README.md -------------------------------------------------------------------------------- /StipopDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StipopDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/AppDelegate.swift -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Colors/Default.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Colors/Default.colorset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Colors/DefaultReverse.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Colors/DefaultReverse.colorset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Colors/StipopChatBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Colors/StipopChatBackground.colorset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Colors/StipopMain.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Colors/StipopMain.colorset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Colors/StipopTextFieldBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Colors/StipopTextFieldBackground.colorset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Colors/StipopTextFieldBackgroundStroke.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Colors/StipopTextFieldBackgroundStroke.colorset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Colors/StipopTypingViewLayoutBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Colors/StipopTypingViewLayoutBackground.colorset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/bg.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/bg.imageset/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/bg.imageset/bg.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/bg.imageset/bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/bg.imageset/bg@2x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/bg.imageset/bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/bg.imageset/bg@3x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icGo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icGo.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icGo.imageset/icGo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icGo.imageset/icGo.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icGo.imageset/icGo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icGo.imageset/icGo@2x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icGo.imageset/icGo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icGo.imageset/icGo@3x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icMore.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icMore.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icMore.imageset/icMore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icMore.imageset/icMore.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icMore.imageset/icMore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icMore.imageset/icMore@2x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icMore.imageset/icMore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icMore.imageset/icMore@3x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSendActive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSendActive.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSendActive.imageset/icSendActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSendActive.imageset/icSendActive.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSendActive.imageset/icSendActive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSendActive.imageset/icSendActive@2x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSendActive.imageset/icSendActive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSendActive.imageset/icSendActive@3x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSendNormal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSendNormal.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSendNormal.imageset/icSendNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSendNormal.imageset/icSendNormal.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSendNormal.imageset/icSendNormal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSendNormal.imageset/icSendNormal@2x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSendNormal.imageset/icSendNormal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSendNormal.imageset/icSendNormal@3x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSsvNormal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSsvNormal.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSsvNormal.imageset/icSsvNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSsvNormal.imageset/icSsvNormal.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSsvNormal.imageset/icSsvNormal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSsvNormal.imageset/icSsvNormal@2x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/icSsvNormal.imageset/icSsvNormal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/icSsvNormal.imageset/icSsvNormal@3x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/imgStipop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/imgStipop.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/imgStipop.imageset/imgStipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/imgStipop.imageset/imgStipop.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/imgStipop.imageset/imgStipop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/imgStipop.imageset/imgStipop@2x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/imgStipop.imageset/imgStipop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/imgStipop.imageset/imgStipop@3x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/jay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/jay.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/jay.imageset/jay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/jay.imageset/jay.svg -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /StipopDemo/Assets.xcassets/logo.imageset/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Assets.xcassets/logo.imageset/logo@3x.png -------------------------------------------------------------------------------- /StipopDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /StipopDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /StipopDemo/Enums/ColorEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Enums/ColorEnum.swift -------------------------------------------------------------------------------- /StipopDemo/Extensions/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Extensions/UIView+Extensions.swift -------------------------------------------------------------------------------- /StipopDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Info.plist -------------------------------------------------------------------------------- /StipopDemo/Model/SPChat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/Model/SPChat.swift -------------------------------------------------------------------------------- /StipopDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /StipopDemo/StipopAuth/DemoSAuthAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/StipopAuth/DemoSAuthAPI.swift -------------------------------------------------------------------------------- /StipopDemo/StipopAuth/DemoSAuthAPI_access_token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/StipopAuth/DemoSAuthAPI_access_token.swift -------------------------------------------------------------------------------- /StipopDemo/StipopAuth/DemoSAuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/StipopAuth/DemoSAuthManager.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/SPDChatroomViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/SPDChatroomViewController.storyboard -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/SPDChatroomViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/SPDChatroomViewController.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/Views/SPDChatroomHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/Views/SPDChatroomHeaderCell.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/Views/SPDChatroomNavigationTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/Views/SPDChatroomNavigationTitleView.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/Views/SPDCounterExecuteChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/Views/SPDCounterExecuteChatCell.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/Views/SPDCounterStickerChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/Views/SPDCounterStickerChatCell.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/Views/SPDCounterTextChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/Views/SPDCounterTextChatCell.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/Views/SPDMyStickerChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/Views/SPDMyStickerChatCell.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDChatroomViewController/Views/SPDMyTextChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDChatroomViewController/Views/SPDMyTextChatCell.swift -------------------------------------------------------------------------------- /StipopDemo/View/SPDMainViewController/SPDMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/View/SPDMainViewController/SPDMainViewController.swift -------------------------------------------------------------------------------- /StipopDemo/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /StipopDemo/fr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/fr.lproj/Main.strings -------------------------------------------------------------------------------- /StipopDemo/hi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /StipopDemo/hi.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/hi.lproj/Main.strings -------------------------------------------------------------------------------- /StipopDemo/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /StipopDemo/ko.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/ko.lproj/Main.strings -------------------------------------------------------------------------------- /StipopDemo/vi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /StipopDemo/vi.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/vi.lproj/Main.strings -------------------------------------------------------------------------------- /StipopDemo/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /StipopDemo/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/zh-Hans.lproj/Main.strings -------------------------------------------------------------------------------- /StipopDemo/zh-Hant.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /StipopDemo/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stipop-development/stipop-ios-sdk/HEAD/StipopDemo/zh-Hant.lproj/Main.strings --------------------------------------------------------------------------------