├── FastApp ├── Assets.xcassets │ ├── Contents.json │ ├── Common │ │ ├── Contents.json │ │ ├── prev.imageset │ │ │ ├── prev@2x.png │ │ │ ├── prev@3x.png │ │ │ └── Contents.json │ │ ├── segment-default.imageset │ │ │ ├── segment-default.png │ │ │ └── Contents.json │ │ └── segment-selected.imageset │ │ │ ├── segment-selected.png │ │ │ └── Contents.json │ ├── Checkmark │ │ ├── Contents.json │ │ ├── Checkmark-error.imageset │ │ │ ├── Checkmark-error.png │ │ │ ├── Checkmark-error@2x.png │ │ │ ├── Checkmark-error@3x.png │ │ │ └── Contents.json │ │ └── Checkmark-success.imageset │ │ │ ├── Checkmark-success.png │ │ │ ├── Checkmark-success@2x.png │ │ │ ├── Checkmark-success@3x.png │ │ │ └── Contents.json │ ├── TabBaricons │ │ ├── Contents.json │ │ ├── 11.imageset │ │ │ ├── 11@2x.png │ │ │ ├── 11@3x.png │ │ │ └── Contents.json │ │ ├── 12.imageset │ │ │ ├── 12@2x.png │ │ │ ├── 12@3x.png │ │ │ └── Contents.json │ │ ├── 21.imageset │ │ │ ├── 21@2x.png │ │ │ ├── 21@3x.png │ │ │ └── Contents.json │ │ ├── 22.imageset │ │ │ ├── 22@2x.png │ │ │ ├── 22@3x.png │ │ │ └── Contents.json │ │ ├── 31.imageset │ │ │ ├── 31@2x.png │ │ │ ├── 31@3x.png │ │ │ └── Contents.json │ │ ├── 32.imageset │ │ │ ├── 32@2x.png │ │ │ ├── 32@3x.png │ │ │ └── Contents.json │ │ ├── 41.imageset │ │ │ ├── 41@2x.png │ │ │ ├── 41@3x.png │ │ │ └── Contents.json │ │ ├── 42.imageset │ │ │ ├── 42@2x.png │ │ │ ├── 42@3x.png │ │ │ └── Contents.json │ │ ├── 51.imageset │ │ │ ├── 51@2x.png │ │ │ ├── 51@3x.png │ │ │ └── Contents.json │ │ └── 52.imageset │ │ │ ├── 52@2x.png │ │ │ ├── 52@3x.png │ │ │ └── Contents.json │ └── AppIcon.appiconset │ │ ├── Icon-1024.png │ │ ├── Icon-76.png │ │ ├── Icon-167@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small@2x.png │ │ ├── AppIcon24x24@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon86x86@2x.png │ │ ├── AppIcon98x98@2x.png │ │ ├── Icon-Small-40@2x.png │ │ ├── AppIcon27.5x27.5@2x.png │ │ └── Contents.json ├── Default-568h@2x.png ├── FastApp-Bridging-Header.h ├── FSTestLayoutViewController.swift ├── FSAppHomeViewController.swift ├── introduce.plist ├── AppDelegate.swift ├── Classes │ └── Common │ │ └── Constant │ │ ├── FSEnums.swift │ │ ├── FSUIFuncDefines.swift │ │ └── FSConstants.swift ├── Info.plist └── autolayoutGuide.plist ├── FastApp.xcodeproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── FastApp.xcscheme └── project.pbxproj ├── Cartfile.resolved ├── tmp.xcconfig ├── Cartfile ├── README.md └── .gitignore /FastApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /FastApp/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Default-568h@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Common/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Common/prev.imageset/prev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Common/prev.imageset/prev@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Common/prev.imageset/prev@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Common/prev.imageset/prev@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-167@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-167@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/11.imageset/11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/11.imageset/11@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/11.imageset/11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/11.imageset/11@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/12.imageset/12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/12.imageset/12@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/12.imageset/12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/12.imageset/12@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/21.imageset/21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/21.imageset/21@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/21.imageset/21@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/21.imageset/21@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/22.imageset/22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/22.imageset/22@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/22.imageset/22@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/22.imageset/22@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/31.imageset/31@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/31.imageset/31@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/31.imageset/31@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/31.imageset/31@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/32.imageset/32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/32.imageset/32@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/32.imageset/32@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/32.imageset/32@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/41.imageset/41@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/41.imageset/41@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/41.imageset/41@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/41.imageset/41@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/42.imageset/42@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/42.imageset/42@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/42.imageset/42@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/42.imageset/42@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/51.imageset/51@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/51.imageset/51@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/51.imageset/51@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/51.imageset/51@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/52.imageset/52@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/52.imageset/52@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/52.imageset/52@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/TabBaricons/52.imageset/52@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon24x24@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon86x86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon86x86@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon98x98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon98x98@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon27.5x27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/AppIcon.appiconset/AppIcon27.5x27.5@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Common/segment-default.imageset/segment-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Common/segment-default.imageset/segment-default.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Checkmark-error.imageset/Checkmark-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Checkmark/Checkmark-error.imageset/Checkmark-error.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Common/segment-selected.imageset/segment-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Common/segment-selected.imageset/segment-selected.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Checkmark-error.imageset/Checkmark-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Checkmark/Checkmark-error.imageset/Checkmark-error@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Checkmark-error.imageset/Checkmark-error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Checkmark/Checkmark-error.imageset/Checkmark-error@3x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Checkmark-success.imageset/Checkmark-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Checkmark/Checkmark-success.imageset/Checkmark-success.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Checkmark-success.imageset/Checkmark-success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Checkmark/Checkmark-success.imageset/Checkmark-success@2x.png -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Checkmark-success.imageset/Checkmark-success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangkunyin/native_ios_startkit/HEAD/FastApp/Assets.xcassets/Checkmark/Checkmark-success.imageset/Checkmark-success@3x.png -------------------------------------------------------------------------------- /FastApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "Alamofire/Alamofire" "5.4.0" 2 | github "SnapKit/SnapKit" "5.0.1" 3 | github "SwiftyJSON/SwiftyJSON" "5.0.0" 4 | github "jdg/MBProgressHUD" "1.2.0" 5 | github "onevcat/APNGKit" "1.2.2" 6 | github "onevcat/Kingfisher" "5.15.8" 7 | -------------------------------------------------------------------------------- /tmp.xcconfig: -------------------------------------------------------------------------------- 1 | EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64=arm64 arm64e armv7 armv7s armv6 armv8\ 2 | EXCLUDED_ARCHS=$(inherited) $(EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_$(EFFECTIVE_PLATFORM_SUFFIX)__NATIVE_ARCH_64_BIT_$(NATIVE_ARCH_64_BIT))} 3 | -------------------------------------------------------------------------------- /FastApp/FastApp-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 所有OC类库头文件在此引入,供swift使用 4 | // 5 | 6 | 7 | //#import "MJExtension.h" 8 | //#import "MBProgressHUD.h" 9 | //#import "AFNetworking.h" 10 | -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | # pure swift libs 2 | github "SnapKit/SnapKit" ~> 5.0.1 3 | github "Alamofire/Alamofire" ~> 5.4.0 4 | github "onevcat/Kingfisher" ~> 5.15.8 5 | github "onevcat/APNGKit" ~> 1.2.2 6 | github "SwiftyJSON/SwiftyJSON" ~> 5.0.0 7 | 8 | # import obj-c libs 9 | github "jdg/MBProgressHUD" ~> 1.2.0 10 | -------------------------------------------------------------------------------- /FastApp/FSTestLayoutViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FSTestLayoutViewController.swift 3 | // FastApp 4 | // 5 | // Created by tangkunyin on 2016/11/16. 6 | // Copyright © 2016年 www.shuoit.net. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class FSTestLayoutViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | 16 | 17 | } 18 | 19 | 20 | 21 | } 22 | -------------------------------------------------------------------------------- /FastApp/FSAppHomeViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FSAppHomeViewController.swift 3 | // FastApp 4 | // 5 | // Created by tangkunyin on 2016/11/16. 6 | // Copyright © 2016年 www.shuoit.net. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class FSAppHomeViewController: UITabBarController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | 16 | 17 | 18 | 19 | } 20 | 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Common/segment-default.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "segment-default.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Common/segment-selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "segment-selected.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Common/prev.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "prev@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "prev@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "11@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "11@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "12@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "12@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/21.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "21@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "21@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "22@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "22@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/31.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "31@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "31@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/32.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "32@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "32@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/41.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "41@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "41@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/42.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "42@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "42@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/51.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "51@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "51@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/TabBaricons/52.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "52@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "52@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Checkmark-error.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Checkmark-error.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "Checkmark-error@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "Checkmark-error@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/Checkmark/Checkmark-success.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Checkmark-success.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "Checkmark-success@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "Checkmark-success@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /FastApp/introduce.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 当你看到现在这些字的时候,你就已经可以纯Coding撸代码了。这里我将分别介绍相关类库的使用。正如你现在看到的样子,没有特异功能,只是集成或整合了常用的代码,你可以想象着英语句子去寻找工具类或类的方法。爱情提示:所有子页面支持左滑动返回上层,如果花现字体颜色看不清,请重新进一次 :) 6 | 界面中,将演示UI摆放工具《FSAutolayoutor》、UI创建工具《FSUICreator》的使用,之所以要单说这俩,是因为他们灰常之重要。实际开发中如果运用得当,能帮你节省不少代码,并且实现不错的效果。敢说不好用,我保证不*死你...... 7 | 其他分类中,将演示一些常用工具类,比如字符串工具类、加密解密工具、服务器交互工具、提示工具等,这些工具类或者分类,看看名字就知道什么意思了,这里我也就不多说 8 | 购物分类其实是电商APP中会常用的一些代码,比如购物车、商品展示、评价打分等,这里以淘宝客户端一些效果做演示,如果你是电商应用,应该能参考 9 | 用户模块,顾名思义,就是跟用户相关的通用代码,例如登录、注册、意见反馈等 10 | 好的,就先介绍到这里吧,有疑问欢迎QQ群讨论:43250524,有问必答。欢迎大虾们为此添砖加瓦,欢迎各位光临全球最大的同性交友网站! 11 | 你懂的网站:https://github.com/tangkunyin 12 | 13 | 14 | -------------------------------------------------------------------------------- /FastApp/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // FastApp 4 | // 5 | // Created by tangkunyin on 2016/11/16. 6 | // Copyright © 2016年 www.shuoit.net. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 17 | 18 | 19 | window = UIWindow(frame: UIScreen.main.bounds) 20 | window?.backgroundColor = UIColor.white 21 | 22 | 23 | window?.rootViewController = FSAppHomeViewController() 24 | 25 | 26 | window?.makeKeyAndVisible() 27 | 28 | return true 29 | } 30 | 31 | func applicationWillResignActive(_ application: UIApplication) { 32 | 33 | } 34 | 35 | func applicationDidEnterBackground(_ application: UIApplication) { 36 | 37 | } 38 | 39 | func applicationWillEnterForeground(_ application: UIApplication) { 40 | 41 | } 42 | 43 | func applicationDidBecomeActive(_ application: UIApplication) { 44 | 45 | } 46 | 47 | func applicationWillTerminate(_ application: UIApplication) { 48 | 49 | } 50 | } 51 | 52 | 53 | -------------------------------------------------------------------------------- /FastApp/Classes/Common/Constant/FSEnums.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FSEnums.swift 3 | // FastApp 4 | // 5 | // Created by tangkunyin on 2017/4/22. 6 | // Copyright © 2017年 www.shuoit.net. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | // http://swift.gg/2015/11/20/advanced-practical-enum-examples/ 12 | 13 | // 位置类型 14 | enum FSLayoutAlignmentType:Int { 15 | case AlignmentCenter = 0, AlignmentTop , AlignmentBottom , AlignmentLeft , AlignmentRight 16 | } 17 | 18 | 19 | // 网络状态 20 | enum FSNetStateCode { 21 | case FSNetStatusReachable //有网络 22 | case FSNetStatusNotReachable //无网络 23 | } 24 | 25 | 26 | // HTTP返回码 27 | enum FSHttpStatusCode:Int { 28 | //通用状态码 29 | case HttpStatusSuccessCode = 200 //请求成功 30 | case HttpStatusNotModifyCode = 304 //资源未修改 31 | case HttpStatusUnAuthoriztionCode = 401 //请求未授权 32 | case HttpStatusForbiddenCode = 403 //禁止访问 33 | case HttpStatusNotFoundCode = 404 //资源不存在 34 | case HttpStatusReqMethodErrorCode = 405 //请求方法错误。例如要求用POST请求,用了GET 35 | case HttpStatusServerErrorCode = 500 //服务器内部错误 36 | 37 | //自定义状态码(可根据接口实际情况更改) 38 | case DataParseErrorCode = -1 //数据解析错误 39 | case HttpStatusReturnNullCode = 0 //服务返回为空 40 | case HttpStatusFalseCode = 1000 //请求失败(可能是未知原因) 41 | case HttpStatusTrueCode = 1001 //请求成功 42 | case HttpStatusMissingArgsCode = 1002 //请求缺少参数,或参数不符合要求 43 | case HttpStatusVerCodeErrorCode = 1003 //验证码错误 44 | case HttpStatusMissingSignCode = 1004 //缺少签名或签名字段错误 45 | case HttpStatusSignErrorCode = 1005 //签名错误 46 | case HttpStatusUploadErrorCode = 1006 //上传文件失败 47 | } 48 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## FastApp 2 | 3 | > A starter kit for iOS developer which wrote by Swift and Objective-C 4 | 5 | Use **FastApp** you can makes creating standard iOS app more simple. 6 | 7 | FastApp is build on the mainstream frameworks and use **SnapKit** to auto layout. 8 | 9 | ### Build-in frameworks 10 | 11 | - SnapKit 12 | - Alamofire 13 | - Kingfisher 14 | - APNGKit 15 | - SwiftyJSON 16 | - MBProgressHUD(Objc version) 17 | 18 | Some tools were built on top of the above libraries. Such as **FSAutolayoutor**, **FSServerCommunicator**, **MBProgressHUD+Show**, etc. 19 | 20 | It's also provide many common ui components. That means you don’t need to develop from zero. Just rename project and your want to renamed... 21 | 22 | ## Usage 23 | 24 | To run the example project, clone the repo, and run `carthage bootstrap` or `pod install` from the root directory first. 25 | 26 | ## Requirements 27 | 28 | FastApp supports Swift5 and iOS 13.6+. 29 | 30 | ## Installation 31 | 32 | Swift is default develop language. If you need Objc support, just change branch to **Objective-C** 33 | 34 | ``` 35 | git clone https://github.com/tangkunyin/FastApp.git 36 | cd FastApp 37 | 38 | # install all swift frameworks 39 | carthage bootstrap 40 | 41 | # add or update a single framework 42 | carthage update Box 43 | 44 | ## or multiple frameworks 45 | carthage update Box1 Box2 46 | ``` 47 | 48 | 49 | ## Other things 50 | 51 | In the earlier years, I have written a little useful shells. Such as [auto packaging tool](https://github.com/tangkunyin/Shellbox/blob/master/bin/ipaTool.sh) 52 | 53 | If you want be more efficient in development. Just clone the repo [shellbox](https://github.com/tangkunyin/Shellbox) 54 | 55 | ## License 56 | 57 | FastApp is available under the MIT license. See the [LICENSE](https://opensource.org/licenses/MIT) for more info. 58 | 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.gitignore.io/api/code,objective-c,swift 2 | 3 | ### Code ### 4 | # Visual Studio Code - https://code.visualstudio.com/ 5 | .settings/ 6 | 7 | 8 | ### Objective-C ### 9 | # Xcode 10 | # 11 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 12 | 13 | ## Build generated 14 | build/ 15 | DerivedData 16 | 17 | ## Various settings 18 | *.pbxuser 19 | !default.pbxuser 20 | *.mode1v3 21 | !default.mode1v3 22 | *.mode2v3 23 | !default.mode2v3 24 | *.perspectivev3 25 | !default.perspectivev3 26 | xcuserdata 27 | 28 | *.xcworkspace 29 | 30 | ## Other 31 | *.xccheckout 32 | *.moved-aside 33 | *.xcuserstate 34 | *.xcscmblueprint 35 | 36 | ## Obj-C/Swift specific 37 | *.hmap 38 | *.ipa 39 | 40 | # CocoaPods 41 | # 42 | # We recommend against adding the Pods directory to your .gitignore. However 43 | # you should judge for yourself, the pros and cons are mentioned at: 44 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 45 | # 46 | Pods/ 47 | 48 | # Carthage 49 | # 50 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 51 | # Carthage/Checkouts 52 | 53 | Carthage/Build 54 | 55 | ### Objective-C Patch ### 56 | *.xcscmblueprint 57 | 58 | 59 | ### Swift ### 60 | # Xcode 61 | # 62 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 63 | 64 | ## Build generated 65 | build/ 66 | DerivedData 67 | 68 | ## Various settings 69 | *.pbxuser 70 | !default.pbxuser 71 | *.mode1v3 72 | !default.mode1v3 73 | *.mode2v3 74 | !default.mode2v3 75 | *.perspectivev3 76 | !default.perspectivev3 77 | xcuserdata 78 | 79 | ## Other 80 | *.xccheckout 81 | *.moved-aside 82 | *.xcuserstate 83 | *.xcscmblueprint 84 | 85 | ## Obj-C/Swift specific 86 | *.hmap 87 | *.ipa 88 | 89 | 90 | # Carthage 91 | # 92 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 93 | # Carthage/Checkouts 94 | 95 | ### Carthage ### 96 | # Carthage - A simple, decentralized dependency manager for Cocoa 97 | Carthage/Checkouts/ 98 | Carthage/Build/ 99 | 100 | -------------------------------------------------------------------------------- /FastApp/Classes/Common/Constant/FSUIFuncDefines.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FSUIFuncDefines.swift 3 | // FastApp 4 | // 5 | // Created by tangkunyin on 2017/4/22. 6 | // Copyright © 2017年 www.shuoit.net. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | // 全局UI相关工具函数定义 12 | func kVCWidth(_ obj:UIViewController) -> CGFloat { 13 | return obj.view.frame.size.width 14 | } 15 | 16 | func kVCHeight(_ obj:UIViewController) -> CGFloat { 17 | return obj.view.frame.size.height 18 | } 19 | 20 | func kViewWidth(_ obj:UIView) -> CGFloat { 21 | return obj.frame.size.width 22 | } 23 | 24 | func kViewHeight(_ obj:UIView) -> CGFloat { 25 | return obj.frame.size.width 26 | } 27 | 28 | //: 全局颜色工具函数定义 29 | func colorWithRGB(_ r:CGFloat,g:CGFloat,b:CGFloat) -> UIColor { 30 | return colorWithRGB(r, g: g, b: b, alpha: 1) 31 | } 32 | 33 | func colorWithRGB(_ r:CGFloat,g:CGFloat,b:CGFloat,alpha:CGFloat) -> UIColor { 34 | return UIColor.init(red: r/255.0, green: g/255.0, blue: b/255.0, alpha: alpha) 35 | } 36 | 37 | func colorWithHexValue(_ hexValue:Int) -> UIColor { 38 | let _r:CGFloat = CGFloat(Float((hexValue & 0xFF0000) >> 16)) 39 | let _g:CGFloat = CGFloat(Float((hexValue & 0xFF00) >> 16)) 40 | let _b:CGFloat = CGFloat(Float((hexValue & 0xFF) >> 16)) 41 | return colorWithRGB(_r, g: _g, b: _b, alpha: 1) 42 | } 43 | 44 | func grayColor(_ rgb:CGFloat) -> UIColor { 45 | return colorWithRGB(rgb, g: rgb, b: rgb, alpha: 1) 46 | } 47 | 48 | 49 | func randomColorWithAlpha(_ alpha:CGFloat) -> UIColor { 50 | let rValue:CGFloat = CGFloat(Float(arc4random_uniform(255))/255.0) 51 | let gValue:CGFloat = CGFloat(Float(arc4random_uniform(255))/255.0) 52 | let bValue:CGFloat = CGFloat(Float(arc4random_uniform(255))/255.0) 53 | return colorWithRGB(rValue, g: gValue, b: bValue, alpha: alpha) 54 | } 55 | 56 | //: 全局字体函数定义 57 | func sysFontWithSize(_ size:CGFloat) -> UIFont { 58 | return UIFont.systemFont(ofSize: size) 59 | } 60 | 61 | func pfnFontWithSize(_ size:CGFloat) -> UIFont { 62 | return UIFont.init(name: "PingFangSC-Regular", size: size)! 63 | } 64 | 65 | func pfbFontWithSize(_ size:CGFloat) -> UIFont { 66 | return UIFont.init(name: "PingFangSC-Thin", size: size)! 67 | } 68 | 69 | func htscFontWithSize(_ size:CGFloat) -> UIFont { 70 | return UIFont.init(name: "Heiti SC", size: size)! 71 | } 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /FastApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | zh_CN 7 | CFBundleDisplayName 8 | FastApp 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSAppTransportSecurity 28 | 29 | NSAllowsArbitraryLoads 30 | 31 | 32 | NSCameraUsageDescription 33 | 此App需要您的同意才能访问相机 34 | NSLocationWhenInUseUsageDescription 35 | 此App需要您的同意才能使用定位 36 | NSPhotoLibraryUsageDescription 37 | 此App需要您的同意才能读取媒体资料库 38 | UIBackgroundModes 39 | 40 | audio 41 | fetch 42 | location 43 | newsstand-content 44 | remote-notification 45 | 46 | UIRequiredDeviceCapabilities 47 | 48 | armv7 49 | 50 | UIRequiresFullScreen 51 | 52 | UIStatusBarHidden 53 | 54 | UISupportedInterfaceOrientations 55 | 56 | UIInterfaceOrientationPortrait 57 | UIInterfaceOrientationLandscapeLeft 58 | UIInterfaceOrientationLandscapeRight 59 | 60 | UISupportedInterfaceOrientations~ipad 61 | 62 | UIInterfaceOrientationPortrait 63 | UIInterfaceOrientationPortraitUpsideDown 64 | UIInterfaceOrientationLandscapeLeft 65 | UIInterfaceOrientationLandscapeRight 66 | 67 | UIViewControllerBasedStatusBarAppearance 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /FastApp/Classes/Common/Constant/FSConstants.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FSConstants.swift 3 | // FastApp 4 | // 5 | // Created by tangkunyin on 2017/4/22. 6 | // Copyright © 2017年 www.shuoit.net. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | /** 12 | * 所有全局常量均在此处定义 13 | * 使用方式如:FSConstants.UI.deviceWidth 即可取得设备宽 14 | */ 15 | struct FSConstants { 16 | 17 | 18 | /// 开发模式 19 | static let isDevelopModel:Bool = true 20 | 21 | /// 服务器连接超时时间 22 | static let serverTimeout:Double = 45.0 23 | 24 | /// API服务器地址 25 | static let appServer:String = "http://www.shuoit.net" 26 | 27 | /// DES3 KEY (必须是24位) 28 | static let desKey:String = "123456781234567812345678" 29 | 30 | /// MD5 KEY (8位) 31 | static let md5Key:String = "88888888" 32 | 33 | /// 分页每页的条数 34 | static let pageRows:Int = 10 35 | 36 | 37 | /// 事件消息key定义 38 | struct MessageKey { 39 | 40 | //网络请求失败 41 | static let serverRequestFailure: String = "ServerRequestFailure" 42 | 43 | //轮播图点击事件 44 | static let scrollImageViewClicked: String = "ScrollImageViewClicked" 45 | } 46 | 47 | 48 | /// 通用UI尺寸 49 | struct UI { 50 | 51 | static let deviceWidth: CGFloat = UIScreen.main.bounds.size.width 52 | 53 | static let deviceHeight: CGFloat = UIScreen.main.bounds.size.height 54 | 55 | static let fullScreenRect: CGRect = CGRect(x: 0, y: 0, width: deviceWidth, height: deviceHeight) 56 | 57 | static let fullVCRect: CGRect = CGRect(x: 0, y: 0, width: deviceWidth, height: deviceHeight - 64) 58 | 59 | static let fullTabbarVCRect: CGRect = CGRect(x: 0, y: 0, width: deviceWidth, height: deviceHeight - 64 - 49) 60 | 61 | static let singleLineAdjustOffset: CGFloat = ((1 / UIScreen.main.scale) / 2) 62 | 63 | } 64 | 65 | /// 通用视觉规范 66 | struct Color { 67 | static let whiteColor:UIColor = colorWithRGB(255, g: 255, b: 255) //纯白 68 | static let blueColor:UIColor = colorWithRGB(0, g: 153, b: 255) //蓝色 69 | static let orangeColor:UIColor = colorWithRGB(253, g: 106, b: 60) //橙色 70 | static let yellowColor:UIColor = colorWithRGB(239, g: 166, b: 68) //黄色 71 | static let blackColor:UIColor = colorWithRGB(68, g: 68, b: 68) //浅黑色 72 | static let grayColor:UIColor = colorWithRGB(102, g: 102, b: 102) //灰色 73 | static let lightGrayColor:UIColor = colorWithRGB(153, g:153, b:153) //浅灰色 74 | static let coffeeColor:UIColor = colorWithRGB(185,g: 152,b: 99) //咖啡色 75 | static let commonBgColor:UIColor = colorWithRGB(248, g: 248, b: 248) //灰白色 76 | static let separatorLineColor:UIColor = colorWithRGB(232, g: 232, b: 232) //分割线颜色 77 | static let translucentColor:UIColor = colorWithRGB(0,g: 0,b: 0, alpha: 0.55)//半透明颜色 78 | } 79 | 80 | /// 通用字体 81 | struct Font { 82 | static let mainBodyFont: UIFont = htscFontWithSize(12) 83 | static let mainMenuFont: UIFont = htscFontWithSize(17) 84 | static let titleFont: UIFont = htscFontWithSize(14) 85 | static let bottomMenuFont: UIFont = htscFontWithSize(11) 86 | } 87 | 88 | } 89 | 90 | 91 | -------------------------------------------------------------------------------- /FastApp/autolayoutGuide.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 6 | 全屏填充,很明显,是将一个控件按其父控件大小,放置在父控件上,当然此时二者中心必然重合。【注意事项:本方法无需设置子控件大小,即使设置了,也是无效的】 7 | 12 8 | 等边距自适应宽高,此时父控件与子控件中心位置重合,子控件外边距四周相等且距离父控件内边距为指定距离。【注意事项:本方法无需设置子控件大小,即使设置了,也是无效的】 9 | 13 10 | 固定宽高,即为子控件指定固定大小。此时子控件四周边距将根据自身大小自适应。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 11 | 14 12 | 指定边距,此时子控件宽高将根据四周的距离动态改变,如果四周左右、上下距离均不等,则父控件与子控件的中心就不会重合。【注意事项:本方法无需设置子控件大小,即使设置了,也是无效的】 13 | 15 14 | 此时子控件宽或高等于父控件宽或高,如果要居中,则左和右必须相等,或者上下必须相等,或者不会居中摆放。【注意事项:本方法无需设置子控件大小,即使设置了,也是无效的】 15 | 16 | 21 17 | 将固定宽高的子控件摆放在父控件左上角位置。此时左上角横向、纵向的距离由传入参数决定。如果为CGSizeZero,则以父控件左上角定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 18 | 22 19 | 将固定宽高的子控件摆放在父控件左上角位置。此时左上角横向、纵向的距离由传入参数决定。如果为CGSizeZero,则以父控件左上角定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 20 | 23 21 | 将固定宽高的子控件摆放在父控件左中部位置。此时左边距由传入参数决定。如果为0,则以父控件左中部定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 22 | 24 23 | 将固定宽高的子控件摆放在父控件左中部位置。此时左边距由传入参数决定。如果为0,则以父控件左中部定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误,如果宽或高有一个为0,则为0的宽或高就等于父控件宽或高】 24 | 25 25 | 将固定宽高的子控件摆放在父控件左下角位置。此时左下角横向、纵向的距离由传入参数决定。如果为CGSizeZero,则以父控件左下角定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 26 | 26 27 | 将固定宽高的子控件摆放在父控件左下角位置。此时左下角横向、纵向的距离由传入参数决定。如果为CGSizeZero,则以父控件左下角定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 28 | 29 | 31 30 | 将固定宽高的子控件摆放在父控件右上角位置。此时右上角横向、纵向的距离由传入参数决定。如果为CGSizeZero,则以父控件右上角定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 31 | 32 32 | 将固定宽高的子控件摆放在父控件右上角位置。此时右上角横向、纵向的距离由传入参数决定。如果为CGSizeZero,则以父控件右上角定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 33 | 33 34 | 将固定宽高的子控件摆放在父控件右中部位置。此时右边距由传入参数决定。如果为0,则以父控件右中部定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 35 | 34 36 | 将固定宽高的子控件摆放在父控件右中部位置。此时右边距由传入参数决定。如果为0,则以父控件右中部定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误,如果宽或高有一个为0,则为0的宽或高就等于父控件宽或高】 37 | 35 38 | 将固定宽高的子控件摆放在父控件右下角位置。此时右下角横向、纵向的距离由传入参数决定。如果为CGSizeZero,则以父控件右下角定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 39 | 36 40 | 将固定宽高的子控件摆放在父控件右下角位置。此时右下角横向、纵向的距离由传入参数决定。如果为CGSizeZero,则以父控件右下角定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 41 | 42 | 41 43 | 将固定宽高的子控件摆放在父控件中上方位置。此时上边距由传入参数决定。如果为0,则以父控件中顶部定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 44 | 42 45 | 将固定宽高的子控件摆放在父控件中上方位置。此时上边距由传入参数决定。如果为0,则以父控件中顶部定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误,如果宽或高有一个为0,则为0的宽或高就等于父控件宽或高】 46 | 43 47 | 将固定宽高的子控件摆放在父控件中下方位置。此时下边距由传入参数决定。如果为0,则以父控件中底部定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误】 48 | 44 49 | 将固定宽高的子控件摆放在父控件中下方位置。此时下边距由传入参数决定。如果为0,则以父控件中底部定位。【特别提醒:本方法一定要指定子控件大小,否则布局系统将发出崩溃错误,如果宽或高有一个为0,则为0的宽或高就等于父控件宽或高】 50 | 51 | 51 52 | 固定宽高,同级控件间相对定位(外部各边上中下、左中右)。大多数情况下,我们并不想根据父控件位置来定位子控件,因为相对坐标更容易计算,也更便于理解,这时需要根据同级控件相对位置来定位。所以就有了你现在看到的这个画面。【特别提醒:外部相对定位需要指定子控件大小,否则布局系统将发出崩溃错误】 53 | 54 | 55 | -------------------------------------------------------------------------------- /FastApp.xcodeproj/xcshareddata/xcschemes/FastApp.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 52 | 54 | 60 | 61 | 62 | 63 | 67 | 68 | 69 | 70 | 76 | 78 | 84 | 85 | 86 | 87 | 89 | 90 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /FastApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "scale" : "2x", 6 | "size" : "20x20" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "scale" : "3x", 11 | "size" : "20x20" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "scale" : "1x", 16 | "size" : "29x29" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "scale" : "2x", 21 | "size" : "29x29" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "scale" : "3x", 26 | "size" : "29x29" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "scale" : "2x", 31 | "size" : "40x40" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "scale" : "3x", 36 | "size" : "40x40" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "scale" : "1x", 41 | "size" : "57x57" 42 | }, 43 | { 44 | "idiom" : "iphone", 45 | "scale" : "2x", 46 | "size" : "57x57" 47 | }, 48 | { 49 | "filename" : "Icon-60@2x.png", 50 | "idiom" : "iphone", 51 | "scale" : "2x", 52 | "size" : "60x60" 53 | }, 54 | { 55 | "filename" : "Icon-60@3x.png", 56 | "idiom" : "iphone", 57 | "scale" : "3x", 58 | "size" : "60x60" 59 | }, 60 | { 61 | "idiom" : "ipad", 62 | "scale" : "1x", 63 | "size" : "20x20" 64 | }, 65 | { 66 | "idiom" : "ipad", 67 | "scale" : "2x", 68 | "size" : "20x20" 69 | }, 70 | { 71 | "filename" : "Icon-Small.png", 72 | "idiom" : "ipad", 73 | "scale" : "1x", 74 | "size" : "29x29" 75 | }, 76 | { 77 | "idiom" : "ipad", 78 | "scale" : "2x", 79 | "size" : "29x29" 80 | }, 81 | { 82 | "filename" : "Icon-Small-40.png", 83 | "idiom" : "ipad", 84 | "scale" : "1x", 85 | "size" : "40x40" 86 | }, 87 | { 88 | "idiom" : "ipad", 89 | "scale" : "2x", 90 | "size" : "40x40" 91 | }, 92 | { 93 | "idiom" : "ipad", 94 | "scale" : "1x", 95 | "size" : "50x50" 96 | }, 97 | { 98 | "idiom" : "ipad", 99 | "scale" : "2x", 100 | "size" : "50x50" 101 | }, 102 | { 103 | "idiom" : "ipad", 104 | "scale" : "1x", 105 | "size" : "72x72" 106 | }, 107 | { 108 | "idiom" : "ipad", 109 | "scale" : "2x", 110 | "size" : "72x72" 111 | }, 112 | { 113 | "filename" : "Icon-76.png", 114 | "idiom" : "ipad", 115 | "scale" : "1x", 116 | "size" : "76x76" 117 | }, 118 | { 119 | "filename" : "Icon-76@2x.png", 120 | "idiom" : "ipad", 121 | "scale" : "2x", 122 | "size" : "76x76" 123 | }, 124 | { 125 | "filename" : "Icon-167@2x.png", 126 | "idiom" : "ipad", 127 | "scale" : "2x", 128 | "size" : "83.5x83.5" 129 | }, 130 | { 131 | "filename" : "Icon-1024.png", 132 | "idiom" : "ios-marketing", 133 | "scale" : "1x", 134 | "size" : "1024x1024" 135 | }, 136 | { 137 | "filename" : "AppIcon24x24@2x.png", 138 | "idiom" : "watch", 139 | "role" : "notificationCenter", 140 | "scale" : "2x", 141 | "size" : "24x24", 142 | "subtype" : "38mm" 143 | }, 144 | { 145 | "filename" : "AppIcon27.5x27.5@2x.png", 146 | "idiom" : "watch", 147 | "role" : "notificationCenter", 148 | "scale" : "2x", 149 | "size" : "27.5x27.5", 150 | "subtype" : "42mm" 151 | }, 152 | { 153 | "filename" : "Icon-Small@2x.png", 154 | "idiom" : "watch", 155 | "role" : "companionSettings", 156 | "scale" : "2x", 157 | "size" : "29x29" 158 | }, 159 | { 160 | "filename" : "AppIcon29x29@3x.png", 161 | "idiom" : "watch", 162 | "role" : "companionSettings", 163 | "scale" : "3x", 164 | "size" : "29x29" 165 | }, 166 | { 167 | "filename" : "Icon-Small-40@2x.png", 168 | "idiom" : "watch", 169 | "role" : "appLauncher", 170 | "scale" : "2x", 171 | "size" : "40x40", 172 | "subtype" : "38mm" 173 | }, 174 | { 175 | "idiom" : "watch", 176 | "role" : "appLauncher", 177 | "scale" : "2x", 178 | "size" : "44x44", 179 | "subtype" : "40mm" 180 | }, 181 | { 182 | "idiom" : "watch", 183 | "role" : "appLauncher", 184 | "scale" : "2x", 185 | "size" : "50x50", 186 | "subtype" : "44mm" 187 | }, 188 | { 189 | "filename" : "AppIcon86x86@2x.png", 190 | "idiom" : "watch", 191 | "role" : "quickLook", 192 | "scale" : "2x", 193 | "size" : "86x86", 194 | "subtype" : "38mm" 195 | }, 196 | { 197 | "filename" : "AppIcon98x98@2x.png", 198 | "idiom" : "watch", 199 | "role" : "quickLook", 200 | "scale" : "2x", 201 | "size" : "98x98", 202 | "subtype" : "42mm" 203 | }, 204 | { 205 | "idiom" : "watch", 206 | "role" : "quickLook", 207 | "scale" : "2x", 208 | "size" : "108x108", 209 | "subtype" : "44mm" 210 | }, 211 | { 212 | "idiom" : "watch-marketing", 213 | "scale" : "1x", 214 | "size" : "1024x1024" 215 | } 216 | ], 217 | "info" : { 218 | "author" : "xcode", 219 | "version" : 1 220 | } 221 | } 222 | -------------------------------------------------------------------------------- /FastApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 54; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 865AA5BA1EAB9F5B00E94312 /* FSConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 865AA5B91EAB9F5B00E94312 /* FSConstants.swift */; }; 11 | 865AA5BC1EAB9FB900E94312 /* FSEnums.swift in Sources */ = {isa = PBXBuildFile; fileRef = 865AA5BB1EAB9FB900E94312 /* FSEnums.swift */; }; 12 | 865AA5BE1EABA0D500E94312 /* FSUIFuncDefines.swift in Sources */ = {isa = PBXBuildFile; fileRef = 865AA5BD1EABA0D500E94312 /* FSUIFuncDefines.swift */; }; 13 | 86814E011C8D78B80097BC8C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 86814E001C8D78B80097BC8C /* Assets.xcassets */; }; 14 | 86814E1A1C8D7D400097BC8C /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 86814E191C8D7D400097BC8C /* Default-568h@2x.png */; }; 15 | 86AF9C941DDC41C600B1B684 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86AF9C931DDC41C600B1B684 /* AppDelegate.swift */; }; 16 | 86AF9C961DDC421300B1B684 /* FSAppHomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86AF9C951DDC421300B1B684 /* FSAppHomeViewController.swift */; }; 17 | 86AF9C981DDC460D00B1B684 /* FSTestLayoutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86AF9C971DDC460D00B1B684 /* FSTestLayoutViewController.swift */; }; 18 | 86AF9C9F1DDC46C300B1B684 /* autolayoutGuide.plist in Resources */ = {isa = PBXBuildFile; fileRef = 86AF9C9D1DDC46C300B1B684 /* autolayoutGuide.plist */; }; 19 | 86AF9CA01DDC46C300B1B684 /* introduce.plist in Resources */ = {isa = PBXBuildFile; fileRef = 86AF9C9E1DDC46C300B1B684 /* introduce.plist */; }; 20 | 86CB2FDE1EAB470F009972A8 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86CB2FD71EAB470F009972A8 /* Alamofire.framework */; }; 21 | 86CB2FDF1EAB470F009972A8 /* APNGKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86CB2FD81EAB470F009972A8 /* APNGKit.framework */; }; 22 | 86CB2FE01EAB470F009972A8 /* Kingfisher.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86CB2FD91EAB470F009972A8 /* Kingfisher.framework */; }; 23 | 86CB2FE11EAB470F009972A8 /* MBProgressHUD.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86CB2FDA1EAB470F009972A8 /* MBProgressHUD.framework */; }; 24 | 86CB2FE31EAB470F009972A8 /* SnapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86CB2FDC1EAB470F009972A8 /* SnapKit.framework */; }; 25 | 86CB2FE41EAB470F009972A8 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86CB2FDD1EAB470F009972A8 /* SwiftyJSON.framework */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXFileReference section */ 29 | 865AA5B91EAB9F5B00E94312 /* FSConstants.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FSConstants.swift; sourceTree = ""; }; 30 | 865AA5BB1EAB9FB900E94312 /* FSEnums.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FSEnums.swift; sourceTree = ""; }; 31 | 865AA5BD1EABA0D500E94312 /* FSUIFuncDefines.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FSUIFuncDefines.swift; sourceTree = ""; }; 32 | 86814DF11C8D78B80097BC8C /* FastApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FastApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | 86814E001C8D78B80097BC8C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 34 | 86814E051C8D78B80097BC8C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 35 | 86814E191C8D7D400097BC8C /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = ""; }; 36 | 86AF9C921DDC41C600B1B684 /* FastApp-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "FastApp-Bridging-Header.h"; sourceTree = ""; }; 37 | 86AF9C931DDC41C600B1B684 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 38 | 86AF9C951DDC421300B1B684 /* FSAppHomeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FSAppHomeViewController.swift; sourceTree = ""; }; 39 | 86AF9C971DDC460D00B1B684 /* FSTestLayoutViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FSTestLayoutViewController.swift; sourceTree = ""; }; 40 | 86AF9C9D1DDC46C300B1B684 /* autolayoutGuide.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = autolayoutGuide.plist; sourceTree = ""; }; 41 | 86AF9C9E1DDC46C300B1B684 /* introduce.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = introduce.plist; sourceTree = ""; }; 42 | 86CB2FD71EAB470F009972A8 /* Alamofire.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Alamofire.framework; path = Carthage/Build/iOS/Alamofire.framework; sourceTree = ""; }; 43 | 86CB2FD81EAB470F009972A8 /* APNGKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = APNGKit.framework; path = Carthage/Build/iOS/APNGKit.framework; sourceTree = ""; }; 44 | 86CB2FD91EAB470F009972A8 /* Kingfisher.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Kingfisher.framework; path = Carthage/Build/iOS/Kingfisher.framework; sourceTree = ""; }; 45 | 86CB2FDA1EAB470F009972A8 /* MBProgressHUD.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MBProgressHUD.framework; path = Carthage/Build/iOS/MBProgressHUD.framework; sourceTree = ""; }; 46 | 86CB2FDC1EAB470F009972A8 /* SnapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SnapKit.framework; path = Carthage/Build/iOS/SnapKit.framework; sourceTree = ""; }; 47 | 86CB2FDD1EAB470F009972A8 /* SwiftyJSON.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SwiftyJSON.framework; path = Carthage/Build/iOS/SwiftyJSON.framework; sourceTree = ""; }; 48 | /* End PBXFileReference section */ 49 | 50 | /* Begin PBXFrameworksBuildPhase section */ 51 | 86814DEE1C8D78B80097BC8C /* Frameworks */ = { 52 | isa = PBXFrameworksBuildPhase; 53 | buildActionMask = 2147483647; 54 | files = ( 55 | 86CB2FDE1EAB470F009972A8 /* Alamofire.framework in Frameworks */, 56 | 86CB2FDF1EAB470F009972A8 /* APNGKit.framework in Frameworks */, 57 | 86CB2FE01EAB470F009972A8 /* Kingfisher.framework in Frameworks */, 58 | 86CB2FE11EAB470F009972A8 /* MBProgressHUD.framework in Frameworks */, 59 | 86CB2FE31EAB470F009972A8 /* SnapKit.framework in Frameworks */, 60 | 86CB2FE41EAB470F009972A8 /* SwiftyJSON.framework in Frameworks */, 61 | ); 62 | runOnlyForDeploymentPostprocessing = 0; 63 | }; 64 | /* End PBXFrameworksBuildPhase section */ 65 | 66 | /* Begin PBXGroup section */ 67 | 86814DE81C8D78B80097BC8C = { 68 | isa = PBXGroup; 69 | children = ( 70 | 86814DF31C8D78B80097BC8C /* FastApp */, 71 | 86814DF21C8D78B80097BC8C /* Products */, 72 | C7E8E020466F7B95B04CF07B /* Frameworks */, 73 | ); 74 | sourceTree = ""; 75 | }; 76 | 86814DF21C8D78B80097BC8C /* Products */ = { 77 | isa = PBXGroup; 78 | children = ( 79 | 86814DF11C8D78B80097BC8C /* FastApp.app */, 80 | ); 81 | name = Products; 82 | sourceTree = ""; 83 | }; 84 | 86814DF31C8D78B80097BC8C /* FastApp */ = { 85 | isa = PBXGroup; 86 | children = ( 87 | 86814E0D1C8D7C440097BC8C /* Classes */, 88 | 86814DF41C8D78B80097BC8C /* Supporting Files */, 89 | ); 90 | path = FastApp; 91 | sourceTree = ""; 92 | }; 93 | 86814DF41C8D78B80097BC8C /* Supporting Files */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 86AF9C9D1DDC46C300B1B684 /* autolayoutGuide.plist */, 97 | 86AF9C9E1DDC46C300B1B684 /* introduce.plist */, 98 | 86814E191C8D7D400097BC8C /* Default-568h@2x.png */, 99 | 86814E001C8D78B80097BC8C /* Assets.xcassets */, 100 | 86814E051C8D78B80097BC8C /* Info.plist */, 101 | 86AF9C931DDC41C600B1B684 /* AppDelegate.swift */, 102 | 86AF9C921DDC41C600B1B684 /* FastApp-Bridging-Header.h */, 103 | 86AF9C951DDC421300B1B684 /* FSAppHomeViewController.swift */, 104 | 86AF9C971DDC460D00B1B684 /* FSTestLayoutViewController.swift */, 105 | ); 106 | name = "Supporting Files"; 107 | sourceTree = ""; 108 | }; 109 | 86814E0D1C8D7C440097BC8C /* Classes */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | 86814E0E1C8D7C440097BC8C /* AppCode */, 113 | 86814E111C8D7C440097BC8C /* Common */, 114 | 86814E181C8D7C440097BC8C /* ThirdPart */, 115 | ); 116 | path = Classes; 117 | sourceTree = ""; 118 | }; 119 | 86814E0E1C8D7C440097BC8C /* AppCode */ = { 120 | isa = PBXGroup; 121 | children = ( 122 | ); 123 | path = AppCode; 124 | sourceTree = ""; 125 | }; 126 | 86814E111C8D7C440097BC8C /* Common */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | 86BEEE841D06A350000D76AC /* Models */, 130 | 86814E121C8D7C440097BC8C /* Category */, 131 | 86814E131C8D7C440097BC8C /* Constant */, 132 | 86814E151C8D7C440097BC8C /* Security */, 133 | 86814E161C8D7C440097BC8C /* Tools */, 134 | 86814E171C8D7C440097BC8C /* UI */, 135 | ); 136 | path = Common; 137 | sourceTree = ""; 138 | }; 139 | 86814E121C8D7C440097BC8C /* Category */ = { 140 | isa = PBXGroup; 141 | children = ( 142 | ); 143 | path = Category; 144 | sourceTree = ""; 145 | }; 146 | 86814E131C8D7C440097BC8C /* Constant */ = { 147 | isa = PBXGroup; 148 | children = ( 149 | 865AA5B91EAB9F5B00E94312 /* FSConstants.swift */, 150 | 865AA5BB1EAB9FB900E94312 /* FSEnums.swift */, 151 | 865AA5BD1EABA0D500E94312 /* FSUIFuncDefines.swift */, 152 | ); 153 | path = Constant; 154 | sourceTree = ""; 155 | }; 156 | 86814E151C8D7C440097BC8C /* Security */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | ); 160 | path = Security; 161 | sourceTree = ""; 162 | }; 163 | 86814E161C8D7C440097BC8C /* Tools */ = { 164 | isa = PBXGroup; 165 | children = ( 166 | ); 167 | path = Tools; 168 | sourceTree = ""; 169 | }; 170 | 86814E171C8D7C440097BC8C /* UI */ = { 171 | isa = PBXGroup; 172 | children = ( 173 | ); 174 | path = UI; 175 | sourceTree = ""; 176 | }; 177 | 86814E181C8D7C440097BC8C /* ThirdPart */ = { 178 | isa = PBXGroup; 179 | children = ( 180 | 86814E4B1C8D97BC0097BC8C /* DCPicScrollView */, 181 | 86814E311C8D94370097BC8C /* GMTBase64 */, 182 | ); 183 | path = ThirdPart; 184 | sourceTree = ""; 185 | }; 186 | 86814E311C8D94370097BC8C /* GMTBase64 */ = { 187 | isa = PBXGroup; 188 | children = ( 189 | ); 190 | path = GMTBase64; 191 | sourceTree = ""; 192 | }; 193 | 86814E4B1C8D97BC0097BC8C /* DCPicScrollView */ = { 194 | isa = PBXGroup; 195 | children = ( 196 | ); 197 | path = DCPicScrollView; 198 | sourceTree = ""; 199 | }; 200 | 86BEEE841D06A350000D76AC /* Models */ = { 201 | isa = PBXGroup; 202 | children = ( 203 | ); 204 | path = Models; 205 | sourceTree = ""; 206 | }; 207 | C7E8E020466F7B95B04CF07B /* Frameworks */ = { 208 | isa = PBXGroup; 209 | children = ( 210 | 86CB2FD71EAB470F009972A8 /* Alamofire.framework */, 211 | 86CB2FD81EAB470F009972A8 /* APNGKit.framework */, 212 | 86CB2FD91EAB470F009972A8 /* Kingfisher.framework */, 213 | 86CB2FDA1EAB470F009972A8 /* MBProgressHUD.framework */, 214 | 86CB2FDC1EAB470F009972A8 /* SnapKit.framework */, 215 | 86CB2FDD1EAB470F009972A8 /* SwiftyJSON.framework */, 216 | ); 217 | name = Frameworks; 218 | sourceTree = ""; 219 | }; 220 | /* End PBXGroup section */ 221 | 222 | /* Begin PBXNativeTarget section */ 223 | 86814DF01C8D78B80097BC8C /* FastApp */ = { 224 | isa = PBXNativeTarget; 225 | buildConfigurationList = 86814E081C8D78B80097BC8C /* Build configuration list for PBXNativeTarget "FastApp" */; 226 | buildPhases = ( 227 | 86814DED1C8D78B80097BC8C /* Sources */, 228 | 86814DEE1C8D78B80097BC8C /* Frameworks */, 229 | 86814DEF1C8D78B80097BC8C /* Resources */, 230 | 86AF9C711DDB2A6D00B1B684 /* Run Script */, 231 | ); 232 | buildRules = ( 233 | ); 234 | dependencies = ( 235 | ); 236 | name = FastApp; 237 | productName = FastApp; 238 | productReference = 86814DF11C8D78B80097BC8C /* FastApp.app */; 239 | productType = "com.apple.product-type.application"; 240 | }; 241 | /* End PBXNativeTarget section */ 242 | 243 | /* Begin PBXProject section */ 244 | 86814DE91C8D78B80097BC8C /* Project object */ = { 245 | isa = PBXProject; 246 | attributes = { 247 | CLASSPREFIX = FS; 248 | LastUpgradeCheck = 1220; 249 | ORGANIZATIONNAME = www.shuoit.net; 250 | TargetAttributes = { 251 | 86814DF01C8D78B80097BC8C = { 252 | CreatedOnToolsVersion = 7.2; 253 | LastSwiftMigration = 0810; 254 | SystemCapabilities = { 255 | com.apple.BackgroundModes = { 256 | enabled = 1; 257 | }; 258 | }; 259 | }; 260 | }; 261 | }; 262 | buildConfigurationList = 86814DEC1C8D78B80097BC8C /* Build configuration list for PBXProject "FastApp" */; 263 | compatibilityVersion = "Xcode 12.0"; 264 | developmentRegion = en; 265 | hasScannedForEncodings = 0; 266 | knownRegions = ( 267 | en, 268 | Base, 269 | ); 270 | mainGroup = 86814DE81C8D78B80097BC8C; 271 | productRefGroup = 86814DF21C8D78B80097BC8C /* Products */; 272 | projectDirPath = ""; 273 | projectRoot = ""; 274 | targets = ( 275 | 86814DF01C8D78B80097BC8C /* FastApp */, 276 | ); 277 | }; 278 | /* End PBXProject section */ 279 | 280 | /* Begin PBXResourcesBuildPhase section */ 281 | 86814DEF1C8D78B80097BC8C /* Resources */ = { 282 | isa = PBXResourcesBuildPhase; 283 | buildActionMask = 2147483647; 284 | files = ( 285 | 86AF9C9F1DDC46C300B1B684 /* autolayoutGuide.plist in Resources */, 286 | 86AF9CA01DDC46C300B1B684 /* introduce.plist in Resources */, 287 | 86814E011C8D78B80097BC8C /* Assets.xcassets in Resources */, 288 | 86814E1A1C8D7D400097BC8C /* Default-568h@2x.png in Resources */, 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | }; 292 | /* End PBXResourcesBuildPhase section */ 293 | 294 | /* Begin PBXShellScriptBuildPhase section */ 295 | 86AF9C711DDB2A6D00B1B684 /* Run Script */ = { 296 | isa = PBXShellScriptBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | ); 300 | inputPaths = ( 301 | "$(SRCROOT)/Carthage/Build/iOS/Alamofire.framework", 302 | "$(SRCROOT)/Carthage/Build/iOS/APNGKit.framework", 303 | "$(SRCROOT)/Carthage/Build/iOS/MBProgressHUD.framework", 304 | "$(SRCROOT)/Carthage/Build/iOS/Kingfisher.framework", 305 | "$(SRCROOT)/Carthage/Build/iOS/SnapKit.framework", 306 | "$(SRCROOT)/Carthage/Build/iOS/SwiftyJSON.framework", 307 | ); 308 | name = "Run Script"; 309 | outputPaths = ( 310 | ); 311 | runOnlyForDeploymentPostprocessing = 0; 312 | shellPath = /bin/sh; 313 | shellScript = "carthage copy-frameworks\n"; 314 | }; 315 | /* End PBXShellScriptBuildPhase section */ 316 | 317 | /* Begin PBXSourcesBuildPhase section */ 318 | 86814DED1C8D78B80097BC8C /* Sources */ = { 319 | isa = PBXSourcesBuildPhase; 320 | buildActionMask = 2147483647; 321 | files = ( 322 | 86AF9C941DDC41C600B1B684 /* AppDelegate.swift in Sources */, 323 | 865AA5BC1EAB9FB900E94312 /* FSEnums.swift in Sources */, 324 | 86AF9C961DDC421300B1B684 /* FSAppHomeViewController.swift in Sources */, 325 | 865AA5BA1EAB9F5B00E94312 /* FSConstants.swift in Sources */, 326 | 865AA5BE1EABA0D500E94312 /* FSUIFuncDefines.swift in Sources */, 327 | 86AF9C981DDC460D00B1B684 /* FSTestLayoutViewController.swift in Sources */, 328 | ); 329 | runOnlyForDeploymentPostprocessing = 0; 330 | }; 331 | /* End PBXSourcesBuildPhase section */ 332 | 333 | /* Begin XCBuildConfiguration section */ 334 | 86814E061C8D78B80097BC8C /* Debug */ = { 335 | isa = XCBuildConfiguration; 336 | buildSettings = { 337 | ALWAYS_SEARCH_USER_PATHS = NO; 338 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 339 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 340 | CLANG_CXX_LIBRARY = "libc++"; 341 | CLANG_ENABLE_MODULES = YES; 342 | CLANG_ENABLE_OBJC_ARC = YES; 343 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 344 | CLANG_WARN_BOOL_CONVERSION = YES; 345 | CLANG_WARN_COMMA = YES; 346 | CLANG_WARN_CONSTANT_CONVERSION = YES; 347 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 348 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 349 | CLANG_WARN_EMPTY_BODY = YES; 350 | CLANG_WARN_ENUM_CONVERSION = YES; 351 | CLANG_WARN_INFINITE_RECURSION = YES; 352 | CLANG_WARN_INT_CONVERSION = YES; 353 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 354 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 355 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 356 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 357 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 358 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 359 | CLANG_WARN_STRICT_PROTOTYPES = YES; 360 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 361 | CLANG_WARN_UNREACHABLE_CODE = YES; 362 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 363 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 364 | COPY_PHASE_STRIP = NO; 365 | DEBUG_INFORMATION_FORMAT = dwarf; 366 | ENABLE_STRICT_OBJC_MSGSEND = YES; 367 | ENABLE_TESTABILITY = YES; 368 | GCC_C_LANGUAGE_STANDARD = gnu99; 369 | GCC_DYNAMIC_NO_PIC = NO; 370 | GCC_NO_COMMON_BLOCKS = YES; 371 | GCC_OPTIMIZATION_LEVEL = 0; 372 | GCC_PREPROCESSOR_DEFINITIONS = ( 373 | "DEBUG=1", 374 | "$(inherited)", 375 | ); 376 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 377 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 378 | GCC_WARN_UNDECLARED_SELECTOR = YES; 379 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 380 | GCC_WARN_UNUSED_FUNCTION = YES; 381 | GCC_WARN_UNUSED_VARIABLE = YES; 382 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 383 | MTL_ENABLE_DEBUG_INFO = YES; 384 | ONLY_ACTIVE_ARCH = YES; 385 | SDKROOT = iphoneos; 386 | TARGETED_DEVICE_FAMILY = "1,2"; 387 | }; 388 | name = Debug; 389 | }; 390 | 86814E071C8D78B80097BC8C /* Release */ = { 391 | isa = XCBuildConfiguration; 392 | buildSettings = { 393 | ALWAYS_SEARCH_USER_PATHS = NO; 394 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 395 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 396 | CLANG_CXX_LIBRARY = "libc++"; 397 | CLANG_ENABLE_MODULES = YES; 398 | CLANG_ENABLE_OBJC_ARC = YES; 399 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 400 | CLANG_WARN_BOOL_CONVERSION = YES; 401 | CLANG_WARN_COMMA = YES; 402 | CLANG_WARN_CONSTANT_CONVERSION = YES; 403 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 404 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 405 | CLANG_WARN_EMPTY_BODY = YES; 406 | CLANG_WARN_ENUM_CONVERSION = YES; 407 | CLANG_WARN_INFINITE_RECURSION = YES; 408 | CLANG_WARN_INT_CONVERSION = YES; 409 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 410 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 411 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 412 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 413 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 414 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 415 | CLANG_WARN_STRICT_PROTOTYPES = YES; 416 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 417 | CLANG_WARN_UNREACHABLE_CODE = YES; 418 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 419 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 420 | COPY_PHASE_STRIP = NO; 421 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 422 | ENABLE_NS_ASSERTIONS = NO; 423 | ENABLE_STRICT_OBJC_MSGSEND = YES; 424 | GCC_C_LANGUAGE_STANDARD = gnu99; 425 | GCC_NO_COMMON_BLOCKS = YES; 426 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 427 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 428 | GCC_WARN_UNDECLARED_SELECTOR = YES; 429 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 430 | GCC_WARN_UNUSED_FUNCTION = YES; 431 | GCC_WARN_UNUSED_VARIABLE = YES; 432 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 433 | MTL_ENABLE_DEBUG_INFO = NO; 434 | SDKROOT = iphoneos; 435 | SWIFT_COMPILATION_MODE = wholemodule; 436 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 437 | TARGETED_DEVICE_FAMILY = "1,2"; 438 | VALIDATE_PRODUCT = YES; 439 | }; 440 | name = Release; 441 | }; 442 | 86814E091C8D78B80097BC8C /* Debug */ = { 443 | isa = XCBuildConfiguration; 444 | buildSettings = { 445 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 446 | CLANG_ENABLE_MODULES = YES; 447 | CLANG_ENABLE_OBJC_WEAK = NO; 448 | CODE_SIGN_IDENTITY = "Apple Development"; 449 | CODE_SIGN_STYLE = Automatic; 450 | DEVELOPMENT_TEAM = ""; 451 | FRAMEWORK_SEARCH_PATHS = ( 452 | "$(inherited)", 453 | "$(PROJECT_DIR)/Carthage/Build/iOS", 454 | ); 455 | GCC_PREFIX_HEADER = ""; 456 | HEADER_SEARCH_PATHS = ""; 457 | INFOPLIST_FILE = FastApp/Info.plist; 458 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 459 | LD_RUNPATH_SEARCH_PATHS = ( 460 | "$(inherited)", 461 | "@executable_path/Frameworks", 462 | ); 463 | OTHER_LDFLAGS = ( 464 | "$(inherited)", 465 | "-ObjC", 466 | "-lc++", 467 | ); 468 | PRODUCT_BUNDLE_IDENTIFIER = net.shuoit.ios.fastApp; 469 | PRODUCT_NAME = "$(TARGET_NAME)"; 470 | PROVISIONING_PROFILE_SPECIFIER = ""; 471 | SWIFT_OBJC_BRIDGING_HEADER = "FastApp/FastApp-Bridging-Header.h"; 472 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 473 | SWIFT_VERSION = 5.0; 474 | }; 475 | name = Debug; 476 | }; 477 | 86814E0A1C8D78B80097BC8C /* Release */ = { 478 | isa = XCBuildConfiguration; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | CLANG_ENABLE_MODULES = YES; 482 | CLANG_ENABLE_OBJC_WEAK = NO; 483 | CODE_SIGN_IDENTITY = "Apple Development"; 484 | CODE_SIGN_STYLE = Automatic; 485 | DEVELOPMENT_TEAM = ""; 486 | FRAMEWORK_SEARCH_PATHS = ( 487 | "$(inherited)", 488 | "$(PROJECT_DIR)/Carthage/Build/iOS", 489 | ); 490 | GCC_PREFIX_HEADER = ""; 491 | HEADER_SEARCH_PATHS = ""; 492 | INFOPLIST_FILE = FastApp/Info.plist; 493 | IPHONEOS_DEPLOYMENT_TARGET = 12.0; 494 | LD_RUNPATH_SEARCH_PATHS = ( 495 | "$(inherited)", 496 | "@executable_path/Frameworks", 497 | ); 498 | OTHER_LDFLAGS = ( 499 | "$(inherited)", 500 | "-ObjC", 501 | "-lc++", 502 | ); 503 | PRODUCT_BUNDLE_IDENTIFIER = net.shuoit.ios.fastApp; 504 | PRODUCT_NAME = "$(TARGET_NAME)"; 505 | PROVISIONING_PROFILE_SPECIFIER = ""; 506 | SWIFT_OBJC_BRIDGING_HEADER = "FastApp/FastApp-Bridging-Header.h"; 507 | SWIFT_VERSION = 5.0; 508 | }; 509 | name = Release; 510 | }; 511 | /* End XCBuildConfiguration section */ 512 | 513 | /* Begin XCConfigurationList section */ 514 | 86814DEC1C8D78B80097BC8C /* Build configuration list for PBXProject "FastApp" */ = { 515 | isa = XCConfigurationList; 516 | buildConfigurations = ( 517 | 86814E061C8D78B80097BC8C /* Debug */, 518 | 86814E071C8D78B80097BC8C /* Release */, 519 | ); 520 | defaultConfigurationIsVisible = 0; 521 | defaultConfigurationName = Release; 522 | }; 523 | 86814E081C8D78B80097BC8C /* Build configuration list for PBXNativeTarget "FastApp" */ = { 524 | isa = XCConfigurationList; 525 | buildConfigurations = ( 526 | 86814E091C8D78B80097BC8C /* Debug */, 527 | 86814E0A1C8D78B80097BC8C /* Release */, 528 | ); 529 | defaultConfigurationIsVisible = 0; 530 | defaultConfigurationName = Release; 531 | }; 532 | /* End XCConfigurationList section */ 533 | }; 534 | rootObject = 86814DE91C8D78B80097BC8C /* Project object */; 535 | } 536 | --------------------------------------------------------------------------------