├── README.md ├── assets ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg └── 6.jpg ├── small-red-book.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── sarah.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── a128.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── sarah.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── small-red-book ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── Image-2.imageset │ ├── 2023掘友年度报告_10.jpeg │ └── Contents.json ├── Image-3.imageset │ ├── Contents.json │ └── GASCXmSbcAEAgSG.jpeg ├── avatar.imageset │ ├── Contents.json │ └── avatar.jpg ├── image-1.imageset │ ├── Contents.json │ └── 老手机照片 (617).jpg └── image-4.imageset │ ├── 1861704880049_.pic.jpg │ └── Contents.json ├── Components └── TabbarView.swift ├── ContentView.swift ├── Data └── CardData.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── Styles ├── ImageStyle.swift └── TextStyle.swift ├── Views ├── ArticleDetail │ └── ArticleDetailView.swift ├── Home │ ├── Components │ │ ├── ArticleCardView.swift │ │ ├── CardView.swift │ │ ├── FindView.swift │ │ ├── FollowView.swift │ │ ├── NavBarPopupView.swift │ │ ├── NavBarView.swift │ │ └── VicinityView.swift │ └── HomeView.swift ├── Message │ └── MessageView.swift ├── Mine │ └── MineView.swift ├── Record │ └── RecordView.swift ├── Shopping │ └── ShoppingView.swift └── TabbarLayout │ └── TabbarLayoutView.swift └── small_red_bookApp.swift /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/README.md -------------------------------------------------------------------------------- /assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/assets/1.jpg -------------------------------------------------------------------------------- /assets/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/assets/2.jpg -------------------------------------------------------------------------------- /assets/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/assets/3.jpg -------------------------------------------------------------------------------- /assets/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/assets/4.jpg -------------------------------------------------------------------------------- /assets/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/assets/5.jpg -------------------------------------------------------------------------------- /assets/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/assets/6.jpg -------------------------------------------------------------------------------- /small-red-book.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /small-red-book.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /small-red-book.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /small-red-book.xcodeproj/project.xcworkspace/xcuserdata/sarah.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book.xcodeproj/project.xcworkspace/xcuserdata/sarah.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /small-red-book.xcodeproj/xcuserdata/a128.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book.xcodeproj/xcuserdata/a128.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /small-red-book.xcodeproj/xcuserdata/a128.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book.xcodeproj/xcuserdata/a128.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /small-red-book.xcodeproj/xcuserdata/sarah.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book.xcodeproj/xcuserdata/sarah.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/Image-2.imageset/2023掘友年度报告_10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/Image-2.imageset/2023掘友年度报告_10.jpeg -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/Image-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/Image-2.imageset/Contents.json -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/Image-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/Image-3.imageset/Contents.json -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/Image-3.imageset/GASCXmSbcAEAgSG.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/Image-3.imageset/GASCXmSbcAEAgSG.jpeg -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/avatar.imageset/Contents.json -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/avatar.imageset/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/avatar.imageset/avatar.jpg -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/image-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/image-1.imageset/Contents.json -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/image-1.imageset/老手机照片 (617).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/image-1.imageset/老手机照片 (617).jpg -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/image-4.imageset/1861704880049_.pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/image-4.imageset/1861704880049_.pic.jpg -------------------------------------------------------------------------------- /small-red-book/Assets.xcassets/image-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Assets.xcassets/image-4.imageset/Contents.json -------------------------------------------------------------------------------- /small-red-book/Components/TabbarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Components/TabbarView.swift -------------------------------------------------------------------------------- /small-red-book/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/ContentView.swift -------------------------------------------------------------------------------- /small-red-book/Data/CardData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Data/CardData.swift -------------------------------------------------------------------------------- /small-red-book/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /small-red-book/Styles/ImageStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Styles/ImageStyle.swift -------------------------------------------------------------------------------- /small-red-book/Styles/TextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Styles/TextStyle.swift -------------------------------------------------------------------------------- /small-red-book/Views/ArticleDetail/ArticleDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/ArticleDetail/ArticleDetailView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Home/Components/ArticleCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Home/Components/ArticleCardView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Home/Components/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Home/Components/CardView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Home/Components/FindView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Home/Components/FindView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Home/Components/FollowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Home/Components/FollowView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Home/Components/NavBarPopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Home/Components/NavBarPopupView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Home/Components/NavBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Home/Components/NavBarView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Home/Components/VicinityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Home/Components/VicinityView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Home/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Home/HomeView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Message/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Message/MessageView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Mine/MineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Mine/MineView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Record/RecordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Record/RecordView.swift -------------------------------------------------------------------------------- /small-red-book/Views/Shopping/ShoppingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/Shopping/ShoppingView.swift -------------------------------------------------------------------------------- /small-red-book/Views/TabbarLayout/TabbarLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/Views/TabbarLayout/TabbarLayoutView.swift -------------------------------------------------------------------------------- /small-red-book/small_red_bookApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyh2001/small-red-book/HEAD/small-red-book/small_red_bookApp.swift --------------------------------------------------------------------------------