├── Build
├── Products
│ └── Debug-iphonesimulator
│ │ ├── LYCLocalization.app
│ │ ├── PkgInfo
│ │ ├── Info.plist
│ │ ├── LYCLocalization
│ │ ├── libswiftRemoteMirror.dylib
│ │ ├── Frameworks
│ │ │ ├── libswiftos.dylib
│ │ │ ├── libswiftCore.dylib
│ │ │ ├── libswiftDarwin.dylib
│ │ │ ├── libswiftUIKit.dylib
│ │ │ ├── libswiftDispatch.dylib
│ │ │ ├── libswiftCoreAudio.dylib
│ │ │ ├── libswiftCoreImage.dylib
│ │ │ ├── libswiftCoreMedia.dylib
│ │ │ ├── libswiftFoundation.dylib
│ │ │ ├── libswiftObjectiveC.dylib
│ │ │ ├── libswiftCoreGraphics.dylib
│ │ │ └── libswiftSwiftOnoneSupport.dylib
│ │ ├── en.lproj
│ │ │ └── Localizable.strings
│ │ ├── zh-Hans.lproj
│ │ │ └── Localizable.strings
│ │ ├── Base.lproj
│ │ │ ├── Main.storyboardc
│ │ │ │ ├── Info.plist
│ │ │ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib
│ │ │ │ └── UIViewController-BYZ-38-t0r.nib
│ │ │ └── LaunchScreen.storyboardc
│ │ │ │ ├── Info.plist
│ │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib
│ │ │ │ └── UIViewController-01J-lp-oVM.nib
│ │ └── _CodeSignature
│ │ │ └── CodeResources
│ │ └── LYCLocalization.swiftmodule
│ │ ├── x86_64.swiftdoc
│ │ └── x86_64.swiftmodule
└── Intermediates
│ └── LYCLocalization.build
│ └── Debug-iphonesimulator
│ └── LYCLocalization.build
│ ├── LYCLocalization-generated-files.hmap
│ ├── dgph
│ ├── dgph~
│ ├── LYCLocalization.hmap
│ ├── swift-overrides.hmap
│ ├── LYCLocalization-project-headers.hmap
│ ├── Objects-normal
│ └── x86_64
│ │ ├── AppDelegate.o
│ │ ├── LYCLocalization.o
│ │ ├── ViewController.o
│ │ ├── LYCLocalization.dia
│ │ ├── ViewController.dia
│ │ ├── LYCLocalization.swiftdoc
│ │ ├── LYCLocalization.swiftmodule
│ │ ├── AppDelegate~partial.swiftdoc
│ │ ├── AppDelegate~partial.swiftmodule
│ │ ├── LYCLocalization~partial.swiftdoc
│ │ ├── ViewController~partial.swiftdoc
│ │ ├── LYCLocalization~partial.swiftmodule
│ │ ├── ViewController~partial.swiftmodule
│ │ ├── LYCLocalization-master.swiftdeps
│ │ ├── LYCLocalization.LinkFileList
│ │ ├── LYCLocalization-OutputFileMap.json
│ │ ├── AppDelegate.d
│ │ ├── ViewController.d
│ │ ├── LYCLocalization.d
│ │ ├── LYCLocalization-Swift.h
│ │ ├── AppDelegate.swiftdeps
│ │ ├── LYCLocalization.swiftdeps
│ │ └── ViewController.swiftdeps
│ ├── Base.lproj
│ ├── Main.storyboardc
│ │ ├── Info.plist
│ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib
│ │ └── UIViewController-BYZ-38-t0r.nib
│ └── LaunchScreen.storyboardc
│ │ ├── Info.plist
│ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib
│ │ └── UIViewController-01J-lp-oVM.nib
│ ├── LYCLocalization-all-target-headers.hmap
│ ├── LYCLocalization-own-target-headers.hmap
│ ├── Main-SBPartialInfo.plist
│ ├── LaunchScreen-SBPartialInfo.plist
│ ├── assetcatalog_generated_info.plist
│ ├── LYCLocalization-all-non-framework-target-headers.hmap
│ ├── assetcatalog_dependencies
│ └── DerivedSources
│ └── LYCLocalization-Swift.h
├── YLLocalization.gif
├── README.md
├── LYCLocalization.xcodeproj
├── xcuserdata
│ └── ismael.xcuserdatad
│ │ ├── xcdebugger
│ │ └── Breakpoints_v2.xcbkptlist
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ └── LYCLocalization.xcscheme
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ │ ├── Yuchen.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
│ │ └── ismael.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
└── project.pbxproj
├── LYCLocalization
├── Locale
│ ├── zh-Hans.lproj
│ │ └── Localizable.strings
│ └── en.lproj
│ │ └── Localizable.strings
├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ └── Contents.json
├── Info.plist
├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
├── ViewController.swift
├── AppDelegate.swift
└── Classes
│ └── LYCLocalization.swift
├── LYCLocalization.podspec
└── LICENSE
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/PkgInfo:
--------------------------------------------------------------------------------
1 | APPL????
--------------------------------------------------------------------------------
/YLLocalization.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/YLLocalization.gif
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # YLLocalization
2 |
3 | 
4 |
5 |
6 | License
7 | ----
8 |
9 | MIT
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Info.plist
--------------------------------------------------------------------------------
/LYCLocalization.xcodeproj/xcuserdata/ismael.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/LYCLocalization:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/LYCLocalization
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.swiftmodule/x86_64.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.swiftmodule/x86_64.swiftdoc
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/libswiftRemoteMirror.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/libswiftRemoteMirror.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.swiftmodule/x86_64.swiftmodule:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.swiftmodule/x86_64.swiftmodule
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftos.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftos.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/en.lproj/Localizable.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/en.lproj/Localizable.strings
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCore.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCore.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftDarwin.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftDarwin.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftUIKit.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftUIKit.dylib
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-generated-files.hmap:
--------------------------------------------------------------------------------
1 | pamh x
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/dgph:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/dgph
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftDispatch.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftDispatch.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/zh-Hans.lproj/Localizable.strings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/zh-Hans.lproj/Localizable.strings
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/dgph~:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/dgph~
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCoreAudio.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCoreAudio.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCoreImage.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCoreImage.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCoreMedia.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCoreMedia.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftFoundation.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftFoundation.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftObjectiveC.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftObjectiveC.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/Main.storyboardc/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/Main.storyboardc/Info.plist
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCoreGraphics.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftCoreGraphics.dylib
--------------------------------------------------------------------------------
/LYCLocalization.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftSwiftOnoneSupport.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Frameworks/libswiftSwiftOnoneSupport.dylib
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/LaunchScreen.storyboardc/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/LaunchScreen.storyboardc/Info.plist
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization.hmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization.hmap
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/swift-overrides.hmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/swift-overrides.hmap
--------------------------------------------------------------------------------
/LYCLocalization.xcodeproj/project.xcworkspace/xcuserdata/Yuchen.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/LYCLocalization.xcodeproj/project.xcworkspace/xcuserdata/Yuchen.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/LYCLocalization.xcodeproj/project.xcworkspace/xcuserdata/ismael.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/LYCLocalization.xcodeproj/project.xcworkspace/xcuserdata/ismael.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib
--------------------------------------------------------------------------------
/LYCLocalization/Locale/zh-Hans.lproj/Localizable.strings:
--------------------------------------------------------------------------------
1 | /*
2 | Localizable.strings
3 | LYCLocalization
4 |
5 | Created by Ismael Liang on 21/09/16.
6 | Copyright © 2016 Yuchen Liang. All rights reserved.
7 | */
8 |
9 | "xxx" = "中文 XXX";
10 | "awesome" = "厉害了你的哥";
11 |
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
--------------------------------------------------------------------------------
/LYCLocalization/Locale/en.lproj/Localizable.strings:
--------------------------------------------------------------------------------
1 | /*
2 | Localizable.strings
3 | LYCLocalization
4 |
5 | Created by Ismael Liang on 21/09/16.
6 | Copyright © 2016 Yuchen Liang. All rights reserved.
7 | */
8 |
9 | "xxx" = "English XXX";
10 | "awesome" = "Awesome your bro";
11 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-project-headers.hmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-project-headers.hmap
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate.o
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/Main.storyboardc/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/Main.storyboardc/Info.plist
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-all-target-headers.hmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-all-target-headers.hmap
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-own-target-headers.hmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-own-target-headers.hmap
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Main-SBPartialInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.o
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController.o
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Products/Debug-iphonesimulator/LYCLocalization.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.dia:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.dia
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController.dia:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController.dia
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LaunchScreen-SBPartialInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/assetcatalog_generated_info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/LaunchScreen.storyboardc/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/LaunchScreen.storyboardc/Info.plist
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.swiftdoc
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.swiftmodule:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.swiftmodule
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-all-non-framework-target-headers.hmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/LYCLocalization-all-non-framework-target-headers.hmap
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization~partial.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization~partial.swiftdoc
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController~partial.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController~partial.swiftdoc
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization~partial.swiftmodule:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization~partial.swiftmodule
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController~partial.swiftmodule:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController~partial.swiftmodule
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/assetcatalog_dependencies:
--------------------------------------------------------------------------------
1 | actool-11201 /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Assets.xcassets @/Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/assetcatalog_generated_info.plist
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ismaelliang/YLLocalization/HEAD/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization-master.swiftdeps:
--------------------------------------------------------------------------------
1 | version: "Apple Swift version 3.0 (swiftlang-800.0.46.2 clang-800.0.38)"
2 | options: "827fb7ae60790457b9fde979d069d8af"
3 | build_time: [527827315, 14984000]
4 | inputs:
5 | "/Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift": [527827314, 0]
6 | "/Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift": [527824853, 0]
7 | "/Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift": [527740146, 0]
8 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.LinkFileList:
--------------------------------------------------------------------------------
1 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.o
2 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController.o
3 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate.o
4 |
--------------------------------------------------------------------------------
/LYCLocalization.xcodeproj/xcuserdata/ismael.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | LYCLocalization.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 2C26ED011D9227F2005EA2BD
16 |
17 | primary
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/LYCLocalization.podspec:
--------------------------------------------------------------------------------
1 | Pod::Spec.new do |s|
2 |
3 | s.name = "LYCLocalization"
4 | s.version = "0.0.1"
5 | s.summary = "Swift Localization for iOS"
6 |
7 | s.description = "Written in Swift for localizing your iOS app."
8 |
9 |
10 | s.homepage = "https://github.com/ismaelliang/LYCLocalization"
11 |
12 | s.license = "MIT"
13 |
14 | s.author = { "ismaelliang" => "ismaelliang@gmail.com" }
15 |
16 | s.platform = :ios, '8.0'
17 |
18 | s.source = { :git => "https://github.com/ismaelliang/LYCLocalization.git", :tag => "#{s.version}" }
19 |
20 |
21 | s.source_files = "LYCLocalization/"
22 | s.exclude_files = "Classes/Exclude"
23 |
24 | # s.public_header_files = "Classes/**/*.h"
25 |
26 | end
27 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2016 Yuchen Liang
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/LYCLocalization/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | },
33 | {
34 | "idiom" : "ipad",
35 | "size" : "29x29",
36 | "scale" : "1x"
37 | },
38 | {
39 | "idiom" : "ipad",
40 | "size" : "29x29",
41 | "scale" : "2x"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "size" : "40x40",
46 | "scale" : "1x"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "size" : "40x40",
51 | "scale" : "2x"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "size" : "76x76",
56 | "scale" : "1x"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "size" : "76x76",
61 | "scale" : "2x"
62 | }
63 | ],
64 | "info" : {
65 | "version" : 1,
66 | "author" : "xcode"
67 | }
68 | }
--------------------------------------------------------------------------------
/LYCLocalization/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleVersion
20 | 1
21 | LSRequiresIPhoneOS
22 |
23 | UILaunchStoryboardName
24 | LaunchScreen
25 | UIMainStoryboardFile
26 | Main
27 | UIRequiredDeviceCapabilities
28 |
29 | armv7
30 |
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UISupportedInterfaceOrientations~ipad
38 |
39 | UIInterfaceOrientationPortrait
40 | UIInterfaceOrientationPortraitUpsideDown
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/LYCLocalization/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/LYCLocalization/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // LYCLocalization
4 | //
5 | // Created by Ismael Liang on 21/09/16.
6 | // Copyright © 2016 Yuchen Liang. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
12 |
13 | @IBOutlet var textLabel: UILabel!
14 | @IBOutlet var mainTableView: UITableView!
15 |
16 | override func viewDidLoad() {
17 | super.viewDidLoad()
18 | // Do any additional setup after loading the view, typically from a nib.
19 |
20 | refreshLabel()
21 | }
22 |
23 | override func didReceiveMemoryWarning() {
24 | super.didReceiveMemoryWarning()
25 | // Dispose of any resources that can be recreated.
26 | }
27 |
28 |
29 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
30 | return 2;
31 | }
32 |
33 | func numberOfSections(in tableView: UITableView) -> Int {
34 | return 1;
35 | }
36 |
37 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
38 |
39 | let cell = UITableViewCell(style: .default, reuseIdentifier: "cell")
40 |
41 | if indexPath.row == 0 {
42 | cell.textLabel?.text = "English"
43 | } else {
44 | cell.textLabel?.text = "中文"
45 | }
46 |
47 | return cell
48 |
49 | }
50 |
51 | func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
52 | return 40
53 | }
54 |
55 | func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
56 |
57 | if indexPath.row == 0 {
58 | LYCLocalization.defaultTool.curLang = "en"
59 | } else {
60 | LYCLocalization.defaultTool.curLang = "zh-Hans"
61 | }
62 |
63 | refreshLabel()
64 | }
65 |
66 | func refreshLabel() {
67 |
68 | textLabel.text = "awesome".localized()
69 |
70 | }
71 |
72 | }
73 |
74 |
--------------------------------------------------------------------------------
/LYCLocalization/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // LYCLocalization
4 | //
5 | // Created by Ismael Liang on 21/09/16.
6 | // Copyright © 2016 Yuchen Liang. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | @UIApplicationMain
12 | class AppDelegate: UIResponder, UIApplicationDelegate {
13 |
14 | var window: UIWindow?
15 |
16 |
17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
18 | // Override point for customization after application launch.
19 | return true
20 | }
21 |
22 | func applicationWillResignActive(_ application: UIApplication) {
23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
24 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
25 | }
26 |
27 | func applicationDidEnterBackground(_ application: UIApplication) {
28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
30 | }
31 |
32 | func applicationWillEnterForeground(_ application: UIApplication) {
33 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
34 | }
35 |
36 | func applicationDidBecomeActive(_ application: UIApplication) {
37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
38 | }
39 |
40 | func applicationWillTerminate(_ application: UIApplication) {
41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
42 | }
43 |
44 |
45 | }
46 |
47 |
--------------------------------------------------------------------------------
/LYCLocalization.xcodeproj/xcuserdata/ismael.xcuserdatad/xcschemes/LYCLocalization.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
32 |
33 |
39 |
40 |
41 |
42 |
43 |
44 |
54 |
56 |
62 |
63 |
64 |
65 |
66 |
67 |
73 |
75 |
81 |
82 |
83 |
84 |
86 |
87 |
90 |
91 |
92 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization-OutputFileMap.json:
--------------------------------------------------------------------------------
1 | {"":{"swift-dependencies":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/LYCLocalization-master.swiftdeps"},"\/Users\/ismael\/Desktop\/LYCLocalization\/LYCLocalization\/Classes\/LYCLocalization.swift":{"swiftmodule":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/LYCLocalization~partial.swiftmodule","object":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/LYCLocalization.o","llvm-bc":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/LYCLocalization.bc","diagnostics":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/LYCLocalization.dia","dependencies":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/LYCLocalization.d","swift-dependencies":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/LYCLocalization.swiftdeps"},"\/Users\/ismael\/Desktop\/LYCLocalization\/LYCLocalization\/ViewController.swift":{"swiftmodule":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/ViewController~partial.swiftmodule","object":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/ViewController.o","llvm-bc":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/ViewController.bc","diagnostics":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/ViewController.dia","dependencies":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/ViewController.d","swift-dependencies":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/ViewController.swiftdeps"},"\/Users\/ismael\/Desktop\/LYCLocalization\/LYCLocalization\/AppDelegate.swift":{"swiftmodule":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/AppDelegate~partial.swiftmodule","object":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/AppDelegate.o","llvm-bc":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/AppDelegate.bc","diagnostics":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/AppDelegate.dia","dependencies":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/AppDelegate.d","swift-dependencies":"\/Users\/ismael\/Desktop\/LYCLocalization\/Build\/Intermediates\/LYCLocalization.build\/Debug-iphonesimulator\/LYCLocalization.build\/Objects-normal\/x86_64\/AppDelegate.swiftdeps"}}
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate.d:
--------------------------------------------------------------------------------
1 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate.o : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
2 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
3 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
4 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController.d:
--------------------------------------------------------------------------------
1 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController.o : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
2 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController~partial.swiftmodule : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
3 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController~partial.swiftdoc : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
4 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.d:
--------------------------------------------------------------------------------
1 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.o : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
2 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization~partial.swiftmodule : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
3 | /Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization~partial.swiftdoc : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
4 |
--------------------------------------------------------------------------------
/LYCLocalization/Classes/LYCLocalization.swift:
--------------------------------------------------------------------------------
1 | //
2 | // LYCLocalization.swift
3 | // LYCLocalization
4 | //
5 | // Created by Ismael Liang on 21/09/16.
6 | // Copyright © 2016 Yuchen Liang. All rights reserved.
7 | //
8 | //
9 | //
10 | //
11 |
12 | import Foundation
13 |
14 |
15 | final class LYCLocalization {
16 |
17 | ///
18 | static let defaultTool = LYCLocalization() // 单例
19 |
20 | ///
21 | private let userLangKey = "userLangKey" // UserDefaults 中的 key值
22 |
23 | private var default_lang_key: String // 默认语言Key
24 | private var local_dict_all: Dictionary< String, String > // 支持的语言Dict
25 |
26 |
27 | ///
28 | var bundle: Bundle?
29 |
30 |
31 | var curLang: String { // 计算属性
32 |
33 | // get
34 | get {
35 |
36 | let userLangObj = UserDefaults.standard.value(forKey: userLangKey)
37 | var userLang = (userLangObj != nil) ? userLangObj as! String : ""
38 |
39 |
40 | if userLang.isEmpty {
41 |
42 | let languages: Array< String > = UserDefaults.standard.value(forKey: "AppleLanguages") as! Array
43 |
44 | userLang = languages[0]
45 |
46 |
47 | var langSupported = false
48 |
49 | for langKey in local_dict_all.values {
50 |
51 | let range: Range? = userLang.range(of: langKey)
52 |
53 | if range == nil {
54 |
55 | break
56 |
57 | } else if !range!.isEmpty {
58 |
59 | langSupported = true
60 | userLang = langKey
61 | break
62 |
63 | }
64 |
65 | }
66 |
67 | if !langSupported {
68 | userLang = local_dict_all[ "local_cn" ]!
69 | }
70 |
71 | self.curLang = userLang
72 |
73 | }
74 |
75 |
76 | return userLang
77 | }
78 |
79 | // set
80 | set {
81 |
82 | // 如果没有切换到新的语言,不做处理
83 | let userLangObj = UserDefaults.standard.value(forKey: userLangKey)
84 | let userLang = (userLangObj != nil) ? userLangObj as! String : ""
85 | if userLang == newValue{
86 | return
87 | }
88 |
89 | // 更新 UserDefault 存储
90 | UserDefaults.standard.set(newValue, forKey: userLangKey)
91 |
92 | // 更新 Bundle 属性
93 | let path = Bundle.main.path(forResource: newValue, ofType: "lproj")
94 | self.bundle = Bundle(path: path!)
95 |
96 |
97 | }
98 |
99 | }
100 |
101 | // 单例模式, init方法设为private,
102 | private init() {
103 | bundle = nil
104 | default_lang_key = "local_en"
105 | local_dict_all = [
106 | "local_en": "en",
107 | "local_cn": "zh-Hans"
108 | ]
109 | }
110 |
111 |
112 | // 支持外部设置app支持的语言和其中的默认语言
113 | func setupSupportedLangs( langsDict: Dictionary? ) {
114 | setupSupportedLangs(langsDict: langsDict, defaultkey: nil)
115 | }
116 |
117 | func setupSupportedLangs( defaultKey: String? ) {
118 | setupSupportedLangs(langsDict: nil, defaultkey: defaultKey)
119 | }
120 |
121 | func setupSupportedLangs( langsDict: Dictionary?, defaultkey: String? ){
122 |
123 | if langsDict != nil {
124 | local_dict_all = langsDict!
125 | }
126 |
127 | if defaultkey != nil {
128 |
129 | if local_dict_all[ defaultkey! ] != nil {
130 |
131 | default_lang_key = defaultkey!
132 |
133 | }
134 |
135 | }
136 |
137 |
138 |
139 | }
140 |
141 |
142 | }
143 |
144 |
145 | /*
146 | * String Extension 简化国际化的调用
147 | *
148 | * "keyStr".localized()
149 | */
150 | extension String {
151 |
152 | func localized( ) -> String {
153 |
154 | var bundle = LYCLocalization.defaultTool.bundle
155 |
156 | if bundle == nil {
157 | let path = Bundle.main.path(forResource: LYCLocalization.defaultTool.curLang, ofType: "lproj")
158 |
159 | bundle = Bundle(path: path!)!
160 | }
161 |
162 | let str: String? = bundle?.localizedString(forKey: self, value: nil, table: "Localizable")
163 |
164 | return str != nil ? str! : "Not found"
165 |
166 |
167 | }
168 |
169 | }
170 |
--------------------------------------------------------------------------------
/LYCLocalization/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/DerivedSources/LYCLocalization-Swift.h:
--------------------------------------------------------------------------------
1 | // Generated by Apple Swift version 3.0 (swiftlang-800.0.46.2 clang-800.0.38)
2 | #pragma clang diagnostic push
3 |
4 | #if defined(__has_include) && __has_include()
5 | # include
6 | #endif
7 |
8 | #pragma clang diagnostic ignored "-Wauto-import"
9 | #include
10 | #include
11 | #include
12 | #include
13 |
14 | #if !defined(SWIFT_TYPEDEFS)
15 | # define SWIFT_TYPEDEFS 1
16 | # if defined(__has_include) && __has_include()
17 | # include
18 | # elif !defined(__cplusplus) || __cplusplus < 201103L
19 | typedef uint_least16_t char16_t;
20 | typedef uint_least32_t char32_t;
21 | # endif
22 | typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
23 | typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
24 | typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
25 | typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
26 | typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
27 | typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
28 | typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
29 | typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
30 | typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
31 | typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
32 | typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
33 | typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
34 | #endif
35 |
36 | #if !defined(SWIFT_PASTE)
37 | # define SWIFT_PASTE_HELPER(x, y) x##y
38 | # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
39 | #endif
40 | #if !defined(SWIFT_METATYPE)
41 | # define SWIFT_METATYPE(X) Class
42 | #endif
43 | #if !defined(SWIFT_CLASS_PROPERTY)
44 | # if __has_feature(objc_class_property)
45 | # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
46 | # else
47 | # define SWIFT_CLASS_PROPERTY(...)
48 | # endif
49 | #endif
50 |
51 | #if defined(__has_attribute) && __has_attribute(objc_runtime_name)
52 | # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
53 | #else
54 | # define SWIFT_RUNTIME_NAME(X)
55 | #endif
56 | #if defined(__has_attribute) && __has_attribute(swift_name)
57 | # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
58 | #else
59 | # define SWIFT_COMPILE_NAME(X)
60 | #endif
61 | #if defined(__has_attribute) && __has_attribute(objc_method_family)
62 | # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
63 | #else
64 | # define SWIFT_METHOD_FAMILY(X)
65 | #endif
66 | #if !defined(SWIFT_CLASS_EXTRA)
67 | # define SWIFT_CLASS_EXTRA
68 | #endif
69 | #if !defined(SWIFT_PROTOCOL_EXTRA)
70 | # define SWIFT_PROTOCOL_EXTRA
71 | #endif
72 | #if !defined(SWIFT_ENUM_EXTRA)
73 | # define SWIFT_ENUM_EXTRA
74 | #endif
75 | #if !defined(SWIFT_CLASS)
76 | # if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted)
77 | # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
78 | # define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
79 | # else
80 | # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
81 | # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
82 | # endif
83 | #endif
84 |
85 | #if !defined(SWIFT_PROTOCOL)
86 | # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
87 | # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
88 | #endif
89 |
90 | #if !defined(SWIFT_EXTENSION)
91 | # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
92 | #endif
93 |
94 | #if !defined(OBJC_DESIGNATED_INITIALIZER)
95 | # if defined(__has_attribute) && __has_attribute(objc_designated_initializer)
96 | # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
97 | # else
98 | # define OBJC_DESIGNATED_INITIALIZER
99 | # endif
100 | #endif
101 | #if !defined(SWIFT_ENUM)
102 | # define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type
103 | # if defined(__has_feature) && __has_feature(generalized_swift_name)
104 | # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type
105 | # else
106 | # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name)
107 | # endif
108 | #endif
109 | #if !defined(SWIFT_UNAVAILABLE)
110 | # define SWIFT_UNAVAILABLE __attribute__((unavailable))
111 | #endif
112 | #if defined(__has_feature) && __has_feature(modules)
113 | @import UIKit;
114 | @import Foundation;
115 | @import CoreGraphics;
116 | #endif
117 |
118 | #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
119 | #pragma clang diagnostic ignored "-Wduplicate-method-arg"
120 | @class UIWindow;
121 | @class UIApplication;
122 |
123 | SWIFT_CLASS("_TtC15LYCLocalization11AppDelegate")
124 | @interface AppDelegate : UIResponder
125 | @property (nonatomic, strong) UIWindow * _Nullable window;
126 | - (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions;
127 | - (void)applicationWillResignActive:(UIApplication * _Nonnull)application;
128 | - (void)applicationDidEnterBackground:(UIApplication * _Nonnull)application;
129 | - (void)applicationWillEnterForeground:(UIApplication * _Nonnull)application;
130 | - (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application;
131 | - (void)applicationWillTerminate:(UIApplication * _Nonnull)application;
132 | - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
133 | @end
134 |
135 | @class UILabel;
136 | @class UITableView;
137 | @class UITableViewCell;
138 | @class NSBundle;
139 | @class NSCoder;
140 |
141 | SWIFT_CLASS("_TtC15LYCLocalization14ViewController")
142 | @interface ViewController : UIViewController
143 | @property (nonatomic, strong) IBOutlet UILabel * _Null_unspecified textLabel;
144 | @property (nonatomic, strong) IBOutlet UITableView * _Null_unspecified mainTableView;
145 | - (void)viewDidLoad;
146 | - (void)didReceiveMemoryWarning;
147 | - (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section;
148 | - (NSInteger)numberOfSectionsInTableView:(UITableView * _Nonnull)tableView;
149 | - (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
150 | - (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
151 | - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
152 | - (void)refreshLabel;
153 | - (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
154 | - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
155 | @end
156 |
157 | #pragma clang diagnostic pop
158 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization-Swift.h:
--------------------------------------------------------------------------------
1 | // Generated by Apple Swift version 3.0 (swiftlang-800.0.46.2 clang-800.0.38)
2 | #pragma clang diagnostic push
3 |
4 | #if defined(__has_include) && __has_include()
5 | # include
6 | #endif
7 |
8 | #pragma clang diagnostic ignored "-Wauto-import"
9 | #include
10 | #include
11 | #include
12 | #include
13 |
14 | #if !defined(SWIFT_TYPEDEFS)
15 | # define SWIFT_TYPEDEFS 1
16 | # if defined(__has_include) && __has_include()
17 | # include
18 | # elif !defined(__cplusplus) || __cplusplus < 201103L
19 | typedef uint_least16_t char16_t;
20 | typedef uint_least32_t char32_t;
21 | # endif
22 | typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
23 | typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
24 | typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
25 | typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
26 | typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
27 | typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
28 | typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
29 | typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
30 | typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
31 | typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
32 | typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
33 | typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
34 | #endif
35 |
36 | #if !defined(SWIFT_PASTE)
37 | # define SWIFT_PASTE_HELPER(x, y) x##y
38 | # define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
39 | #endif
40 | #if !defined(SWIFT_METATYPE)
41 | # define SWIFT_METATYPE(X) Class
42 | #endif
43 | #if !defined(SWIFT_CLASS_PROPERTY)
44 | # if __has_feature(objc_class_property)
45 | # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
46 | # else
47 | # define SWIFT_CLASS_PROPERTY(...)
48 | # endif
49 | #endif
50 |
51 | #if defined(__has_attribute) && __has_attribute(objc_runtime_name)
52 | # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
53 | #else
54 | # define SWIFT_RUNTIME_NAME(X)
55 | #endif
56 | #if defined(__has_attribute) && __has_attribute(swift_name)
57 | # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
58 | #else
59 | # define SWIFT_COMPILE_NAME(X)
60 | #endif
61 | #if defined(__has_attribute) && __has_attribute(objc_method_family)
62 | # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
63 | #else
64 | # define SWIFT_METHOD_FAMILY(X)
65 | #endif
66 | #if !defined(SWIFT_CLASS_EXTRA)
67 | # define SWIFT_CLASS_EXTRA
68 | #endif
69 | #if !defined(SWIFT_PROTOCOL_EXTRA)
70 | # define SWIFT_PROTOCOL_EXTRA
71 | #endif
72 | #if !defined(SWIFT_ENUM_EXTRA)
73 | # define SWIFT_ENUM_EXTRA
74 | #endif
75 | #if !defined(SWIFT_CLASS)
76 | # if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted)
77 | # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
78 | # define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
79 | # else
80 | # define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
81 | # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
82 | # endif
83 | #endif
84 |
85 | #if !defined(SWIFT_PROTOCOL)
86 | # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
87 | # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
88 | #endif
89 |
90 | #if !defined(SWIFT_EXTENSION)
91 | # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
92 | #endif
93 |
94 | #if !defined(OBJC_DESIGNATED_INITIALIZER)
95 | # if defined(__has_attribute) && __has_attribute(objc_designated_initializer)
96 | # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
97 | # else
98 | # define OBJC_DESIGNATED_INITIALIZER
99 | # endif
100 | #endif
101 | #if !defined(SWIFT_ENUM)
102 | # define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type
103 | # if defined(__has_feature) && __has_feature(generalized_swift_name)
104 | # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type
105 | # else
106 | # define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name)
107 | # endif
108 | #endif
109 | #if !defined(SWIFT_UNAVAILABLE)
110 | # define SWIFT_UNAVAILABLE __attribute__((unavailable))
111 | #endif
112 | #if defined(__has_feature) && __has_feature(modules)
113 | @import UIKit;
114 | @import Foundation;
115 | @import CoreGraphics;
116 | #endif
117 |
118 | #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
119 | #pragma clang diagnostic ignored "-Wduplicate-method-arg"
120 | @class UIWindow;
121 | @class UIApplication;
122 |
123 | SWIFT_CLASS("_TtC15LYCLocalization11AppDelegate")
124 | @interface AppDelegate : UIResponder
125 | @property (nonatomic, strong) UIWindow * _Nullable window;
126 | - (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions;
127 | - (void)applicationWillResignActive:(UIApplication * _Nonnull)application;
128 | - (void)applicationDidEnterBackground:(UIApplication * _Nonnull)application;
129 | - (void)applicationWillEnterForeground:(UIApplication * _Nonnull)application;
130 | - (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application;
131 | - (void)applicationWillTerminate:(UIApplication * _Nonnull)application;
132 | - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
133 | @end
134 |
135 | @class UILabel;
136 | @class UITableView;
137 | @class UITableViewCell;
138 | @class NSBundle;
139 | @class NSCoder;
140 |
141 | SWIFT_CLASS("_TtC15LYCLocalization14ViewController")
142 | @interface ViewController : UIViewController
143 | @property (nonatomic, strong) IBOutlet UILabel * _Null_unspecified textLabel;
144 | @property (nonatomic, strong) IBOutlet UITableView * _Null_unspecified mainTableView;
145 | - (void)viewDidLoad;
146 | - (void)didReceiveMemoryWarning;
147 | - (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section;
148 | - (NSInteger)numberOfSectionsInTableView:(UITableView * _Nonnull)tableView;
149 | - (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
150 | - (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
151 | - (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
152 | - (void)refreshLabel;
153 | - (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
154 | - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
155 | @end
156 |
157 | #pragma clang diagnostic pop
158 |
--------------------------------------------------------------------------------
/Build/Products/Debug-iphonesimulator/LYCLocalization.app/_CodeSignature/CodeResources:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | files
6 |
7 | Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib
8 |
9 | hash
10 |
11 | lFdT2H2pveRavgIrTnuAJGVkwxw=
12 |
13 | optional
14 |
15 |
16 | Base.lproj/LaunchScreen.storyboardc/Info.plist
17 |
18 | hash
19 |
20 | n2t8gsDpfE6XkhG31p7IQJRxTxU=
21 |
22 | optional
23 |
24 |
25 | Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib
26 |
27 | hash
28 |
29 | mNv0fdTaCfAWzU4MYLsRblgo7V0=
30 |
31 | optional
32 |
33 |
34 | Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib
35 |
36 | hash
37 |
38 | Ml1naweHGMGbaG20IWAyITD4HpM=
39 |
40 | optional
41 |
42 |
43 | Base.lproj/Main.storyboardc/Info.plist
44 |
45 | hash
46 |
47 | MDrKFvFWroTb0+KEbQShBcoBvo4=
48 |
49 | optional
50 |
51 |
52 | Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
53 |
54 | hash
55 |
56 | uFG4JkvhY9frNRrOMYpYSmS7vQA=
57 |
58 | optional
59 |
60 |
61 | Frameworks/libswiftCore.dylib
62 |
63 | LF41Uh0Sp4L1Z3yICK12sjRbUjs=
64 |
65 | Frameworks/libswiftCoreAudio.dylib
66 |
67 | rDzJs1nU4Z8U2a0rknvoLZ5LEO4=
68 |
69 | Frameworks/libswiftCoreGraphics.dylib
70 |
71 | GiTlUYKtNaSb4tIeIPM1luUQKhI=
72 |
73 | Frameworks/libswiftCoreImage.dylib
74 |
75 | D6k+A+gnFPQUBxniaJBEqkOvPpA=
76 |
77 | Frameworks/libswiftCoreMedia.dylib
78 |
79 | Ga30qH+StVOyoSgBBtTYnGBsa8k=
80 |
81 | Frameworks/libswiftDarwin.dylib
82 |
83 | JI9mWSWbrNTAgmEGtAHcrKH3nfs=
84 |
85 | Frameworks/libswiftDispatch.dylib
86 |
87 | n3BulE7mkUZ+qQ2lnIm/7/pcf5g=
88 |
89 | Frameworks/libswiftFoundation.dylib
90 |
91 | uF/sF/xbjxlaAhjVX8hawYPUcik=
92 |
93 | Frameworks/libswiftObjectiveC.dylib
94 |
95 | 4sQ5ITCtBahH9Q58pH53rQ/5vfo=
96 |
97 | Frameworks/libswiftSwiftOnoneSupport.dylib
98 |
99 | vldKx1obUIzUVxftsutXtIWS5WM=
100 |
101 | Frameworks/libswiftUIKit.dylib
102 |
103 | Ch5Swd1niGl65CQmnfDLQiZaxDA=
104 |
105 | Frameworks/libswiftos.dylib
106 |
107 | 3pGIqKcGBe5aYb7UlzMBucLGukM=
108 |
109 | Info.plist
110 |
111 | 8L9//YVJ/jMnFxs2P9pLaeXpWQw=
112 |
113 | PkgInfo
114 |
115 | n57qDP4tZfLD1rCS43W0B4LQjzE=
116 |
117 | en.lproj/Localizable.strings
118 |
119 | hash
120 |
121 | SZwB4vPcxbZ6NfJOU9QgSsuFlg0=
122 |
123 | optional
124 |
125 |
126 | libswiftRemoteMirror.dylib
127 |
128 | wyYX1cXEYB1a9v5ZrJt+Uy5NFG8=
129 |
130 | zh-Hans.lproj/Localizable.strings
131 |
132 | hash
133 |
134 | ZwqEgPO9ezs9eKTIjEFFUz5VDwc=
135 |
136 | optional
137 |
138 |
139 |
140 | files2
141 |
142 | Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib
143 |
144 | hash
145 |
146 | lFdT2H2pveRavgIrTnuAJGVkwxw=
147 |
148 | hash2
149 |
150 | u6ADWYdKUz5QA4CbOfvZBzAQqBmJ86qkWUQa56J39yY=
151 |
152 | optional
153 |
154 |
155 | Base.lproj/LaunchScreen.storyboardc/Info.plist
156 |
157 | hash
158 |
159 | n2t8gsDpfE6XkhG31p7IQJRxTxU=
160 |
161 | hash2
162 |
163 | HyVdXMU7Ux4/KalAao30mpWOK/lEPT4gvYN09wf31cg=
164 |
165 | optional
166 |
167 |
168 | Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib
169 |
170 | hash
171 |
172 | mNv0fdTaCfAWzU4MYLsRblgo7V0=
173 |
174 | hash2
175 |
176 | RL2tW8vtA3eJ1h5asDsvKCbNuvhmPru8jAm0js+71dg=
177 |
178 | optional
179 |
180 |
181 | Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib
182 |
183 | hash
184 |
185 | Ml1naweHGMGbaG20IWAyITD4HpM=
186 |
187 | hash2
188 |
189 | LXtue7I1gZWKLFvzrdpyhmlxXb8O4tdOlYCLcgsBy/I=
190 |
191 | optional
192 |
193 |
194 | Base.lproj/Main.storyboardc/Info.plist
195 |
196 | hash
197 |
198 | MDrKFvFWroTb0+KEbQShBcoBvo4=
199 |
200 | hash2
201 |
202 | PpvapAjR62rl6Ym4E6hkTgpKmBICxTaQXeUqcpHmmqQ=
203 |
204 | optional
205 |
206 |
207 | Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
208 |
209 | hash
210 |
211 | uFG4JkvhY9frNRrOMYpYSmS7vQA=
212 |
213 | hash2
214 |
215 | NcUGHtRx3ulbEhrqsQWTBujJ2cViS6M17bw9Yut/qRw=
216 |
217 | optional
218 |
219 |
220 | Frameworks/libswiftCore.dylib
221 |
222 | hash
223 |
224 | LF41Uh0Sp4L1Z3yICK12sjRbUjs=
225 |
226 | hash2
227 |
228 | PZgl7551/w0mzGRapHf+JXuFQ6G1jX3jxFhrO+SHjCI=
229 |
230 |
231 | Frameworks/libswiftCoreAudio.dylib
232 |
233 | hash
234 |
235 | rDzJs1nU4Z8U2a0rknvoLZ5LEO4=
236 |
237 | hash2
238 |
239 | i64MdQ0dZeY+5K82sCrSM1cPl9u9p3o5Urugv5u8B8M=
240 |
241 |
242 | Frameworks/libswiftCoreGraphics.dylib
243 |
244 | hash
245 |
246 | GiTlUYKtNaSb4tIeIPM1luUQKhI=
247 |
248 | hash2
249 |
250 | AljusE8LQqIa6xN4+H9bg3See3hL8zQybuGdrQpaX0s=
251 |
252 |
253 | Frameworks/libswiftCoreImage.dylib
254 |
255 | hash
256 |
257 | D6k+A+gnFPQUBxniaJBEqkOvPpA=
258 |
259 | hash2
260 |
261 | VBbBp7d2v/D9AK/U1wufre2FGc9mnnZEA4gJWPnW3mo=
262 |
263 |
264 | Frameworks/libswiftCoreMedia.dylib
265 |
266 | hash
267 |
268 | Ga30qH+StVOyoSgBBtTYnGBsa8k=
269 |
270 | hash2
271 |
272 | UJGpN/PA5nDMiWEKGyf9R2TjGpBn/rRG1TczqUh32gU=
273 |
274 |
275 | Frameworks/libswiftDarwin.dylib
276 |
277 | hash
278 |
279 | JI9mWSWbrNTAgmEGtAHcrKH3nfs=
280 |
281 | hash2
282 |
283 | MMzPVQ5XO5Dh0+LDlfKc3NZFJRL+t9eEeu6DAT81Z7U=
284 |
285 |
286 | Frameworks/libswiftDispatch.dylib
287 |
288 | hash
289 |
290 | n3BulE7mkUZ+qQ2lnIm/7/pcf5g=
291 |
292 | hash2
293 |
294 | /suKCuGzuAoGv8MD/0uTTyTCKBcg9Uh6hHUcyEPV08g=
295 |
296 |
297 | Frameworks/libswiftFoundation.dylib
298 |
299 | hash
300 |
301 | uF/sF/xbjxlaAhjVX8hawYPUcik=
302 |
303 | hash2
304 |
305 | qqzDRv8cKKOFiAPagp3QxzFXpSrM9hxIoEjI5H982SM=
306 |
307 |
308 | Frameworks/libswiftObjectiveC.dylib
309 |
310 | hash
311 |
312 | 4sQ5ITCtBahH9Q58pH53rQ/5vfo=
313 |
314 | hash2
315 |
316 | 5TNbgkrV4vReZbfZZ5TgmjRbWXS87koPZsuUJhlY60g=
317 |
318 |
319 | Frameworks/libswiftSwiftOnoneSupport.dylib
320 |
321 | hash
322 |
323 | vldKx1obUIzUVxftsutXtIWS5WM=
324 |
325 | hash2
326 |
327 | vdufHPIg7l6hyOShy3q+fL53rgk6Hu5Zcb3HjAbzf98=
328 |
329 |
330 | Frameworks/libswiftUIKit.dylib
331 |
332 | hash
333 |
334 | Ch5Swd1niGl65CQmnfDLQiZaxDA=
335 |
336 | hash2
337 |
338 | PjpjA1Dany6UcOGVFrT3FngrFqz+Hwz0TJSUsPLhNXI=
339 |
340 |
341 | Frameworks/libswiftos.dylib
342 |
343 | hash
344 |
345 | 3pGIqKcGBe5aYb7UlzMBucLGukM=
346 |
347 | hash2
348 |
349 | LtcKRthlwopiSpRsPPza7t7nRkfzLry8PHNzyeHDJX8=
350 |
351 |
352 | en.lproj/Localizable.strings
353 |
354 | hash
355 |
356 | SZwB4vPcxbZ6NfJOU9QgSsuFlg0=
357 |
358 | hash2
359 |
360 | zsNK0V9Sb2AIbFtuNYtk5+p6rm6IvgNndtNua9YgFNs=
361 |
362 | optional
363 |
364 |
365 | libswiftRemoteMirror.dylib
366 |
367 | hash
368 |
369 | wyYX1cXEYB1a9v5ZrJt+Uy5NFG8=
370 |
371 | hash2
372 |
373 | CDNni4KOfGg4kqrp3FyST+ObUPYJe2ubnxJXbQKhVQU=
374 |
375 |
376 | zh-Hans.lproj/Localizable.strings
377 |
378 | hash
379 |
380 | ZwqEgPO9ezs9eKTIjEFFUz5VDwc=
381 |
382 | hash2
383 |
384 | h/Nb+OR5wSbmCrew4VgtFGSj+k0Idc+mL9PiIoDzyi0=
385 |
386 | optional
387 |
388 |
389 |
390 | rules
391 |
392 | ^
393 |
394 | ^.*\.lproj/
395 |
396 | optional
397 |
398 | weight
399 | 1000
400 |
401 | ^.*\.lproj/locversion.plist$
402 |
403 | omit
404 |
405 | weight
406 | 1100
407 |
408 | ^version.plist$
409 |
410 |
411 | rules2
412 |
413 | .*\.dSYM($|/)
414 |
415 | weight
416 | 11
417 |
418 | ^
419 |
420 | weight
421 | 20
422 |
423 | ^(.*/)?\.DS_Store$
424 |
425 | omit
426 |
427 | weight
428 | 2000
429 |
430 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/
431 |
432 | nested
433 |
434 | weight
435 | 10
436 |
437 | ^.*
438 |
439 | ^.*\.lproj/
440 |
441 | optional
442 |
443 | weight
444 | 1000
445 |
446 | ^.*\.lproj/locversion.plist$
447 |
448 | omit
449 |
450 | weight
451 | 1100
452 |
453 | ^Info\.plist$
454 |
455 | omit
456 |
457 | weight
458 | 20
459 |
460 | ^PkgInfo$
461 |
462 | omit
463 |
464 | weight
465 | 20
466 |
467 | ^[^/]+$
468 |
469 | nested
470 |
471 | weight
472 | 10
473 |
474 | ^embedded\.provisionprofile$
475 |
476 | weight
477 | 20
478 |
479 | ^version\.plist$
480 |
481 | weight
482 | 20
483 |
484 |
485 |
486 |
487 |
--------------------------------------------------------------------------------
/LYCLocalization.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 2C26ED061D9227F2005EA2BD /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C26ED051D9227F2005EA2BD /* AppDelegate.swift */; };
11 | 2C26ED081D9227F2005EA2BD /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C26ED071D9227F2005EA2BD /* ViewController.swift */; };
12 | 2C26ED0B1D9227F2005EA2BD /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2C26ED091D9227F2005EA2BD /* Main.storyboard */; };
13 | 2C26ED0D1D9227F2005EA2BD /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2C26ED0C1D9227F2005EA2BD /* Assets.xcassets */; };
14 | 2C26ED101D9227F2005EA2BD /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2C26ED0E1D9227F2005EA2BD /* LaunchScreen.storyboard */; };
15 | 2C26ED3A1D927FB8005EA2BD /* LYCLocalization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C26ED331D927FB8005EA2BD /* LYCLocalization.swift */; };
16 | 2C26ED3B1D927FB8005EA2BD /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2C26ED351D927FB8005EA2BD /* Localizable.strings */; };
17 | /* End PBXBuildFile section */
18 |
19 | /* Begin PBXFileReference section */
20 | 2C26ED021D9227F2005EA2BD /* LYCLocalization.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LYCLocalization.app; sourceTree = BUILT_PRODUCTS_DIR; };
21 | 2C26ED051D9227F2005EA2BD /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
22 | 2C26ED071D9227F2005EA2BD /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
23 | 2C26ED0A1D9227F2005EA2BD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
24 | 2C26ED0C1D9227F2005EA2BD /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
25 | 2C26ED0F1D9227F2005EA2BD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
26 | 2C26ED111D9227F2005EA2BD /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
27 | 2C26ED331D927FB8005EA2BD /* LYCLocalization.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LYCLocalization.swift; sourceTree = ""; };
28 | 2C26ED361D927FB8005EA2BD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; };
29 | 2C26ED371D927FB8005EA2BD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = ""; };
30 | /* End PBXFileReference section */
31 |
32 | /* Begin PBXFrameworksBuildPhase section */
33 | 2C26ECFF1D9227F2005EA2BD /* Frameworks */ = {
34 | isa = PBXFrameworksBuildPhase;
35 | buildActionMask = 2147483647;
36 | files = (
37 | );
38 | runOnlyForDeploymentPostprocessing = 0;
39 | };
40 | /* End PBXFrameworksBuildPhase section */
41 |
42 | /* Begin PBXGroup section */
43 | 2C26ECF91D9227F2005EA2BD = {
44 | isa = PBXGroup;
45 | children = (
46 | 2C26ED041D9227F2005EA2BD /* LYCLocalization */,
47 | 2C26ED031D9227F2005EA2BD /* Products */,
48 | );
49 | sourceTree = "";
50 | };
51 | 2C26ED031D9227F2005EA2BD /* Products */ = {
52 | isa = PBXGroup;
53 | children = (
54 | 2C26ED021D9227F2005EA2BD /* LYCLocalization.app */,
55 | );
56 | name = Products;
57 | sourceTree = "";
58 | };
59 | 2C26ED041D9227F2005EA2BD /* LYCLocalization */ = {
60 | isa = PBXGroup;
61 | children = (
62 | 2C26ED2D1D927FB8005EA2BD /* Classes */,
63 | 2C26ED341D927FB8005EA2BD /* Locale */,
64 | 2C26ED051D9227F2005EA2BD /* AppDelegate.swift */,
65 | 2C26ED071D9227F2005EA2BD /* ViewController.swift */,
66 | 2C26ED091D9227F2005EA2BD /* Main.storyboard */,
67 | 2C26ED0C1D9227F2005EA2BD /* Assets.xcassets */,
68 | 2C26ED0E1D9227F2005EA2BD /* LaunchScreen.storyboard */,
69 | 2C26ED111D9227F2005EA2BD /* Info.plist */,
70 | );
71 | path = LYCLocalization;
72 | sourceTree = "";
73 | };
74 | 2C26ED2D1D927FB8005EA2BD /* Classes */ = {
75 | isa = PBXGroup;
76 | children = (
77 | 2C26ED331D927FB8005EA2BD /* LYCLocalization.swift */,
78 | );
79 | path = Classes;
80 | sourceTree = "";
81 | };
82 | 2C26ED341D927FB8005EA2BD /* Locale */ = {
83 | isa = PBXGroup;
84 | children = (
85 | 2C26ED351D927FB8005EA2BD /* Localizable.strings */,
86 | );
87 | path = Locale;
88 | sourceTree = "";
89 | };
90 | /* End PBXGroup section */
91 |
92 | /* Begin PBXNativeTarget section */
93 | 2C26ED011D9227F2005EA2BD /* LYCLocalization */ = {
94 | isa = PBXNativeTarget;
95 | buildConfigurationList = 2C26ED141D9227F2005EA2BD /* Build configuration list for PBXNativeTarget "LYCLocalization" */;
96 | buildPhases = (
97 | 2C26ECFE1D9227F2005EA2BD /* Sources */,
98 | 2C26ECFF1D9227F2005EA2BD /* Frameworks */,
99 | 2C26ED001D9227F2005EA2BD /* Resources */,
100 | );
101 | buildRules = (
102 | );
103 | dependencies = (
104 | );
105 | name = LYCLocalization;
106 | productName = LYCLocalization;
107 | productReference = 2C26ED021D9227F2005EA2BD /* LYCLocalization.app */;
108 | productType = "com.apple.product-type.application";
109 | };
110 | /* End PBXNativeTarget section */
111 |
112 | /* Begin PBXProject section */
113 | 2C26ECFA1D9227F2005EA2BD /* Project object */ = {
114 | isa = PBXProject;
115 | attributes = {
116 | LastSwiftUpdateCheck = 0800;
117 | LastUpgradeCheck = 0800;
118 | ORGANIZATIONNAME = "Yuchen Liang";
119 | TargetAttributes = {
120 | 2C26ED011D9227F2005EA2BD = {
121 | CreatedOnToolsVersion = 8.0;
122 | ProvisioningStyle = Automatic;
123 | };
124 | };
125 | };
126 | buildConfigurationList = 2C26ECFD1D9227F2005EA2BD /* Build configuration list for PBXProject "LYCLocalization" */;
127 | compatibilityVersion = "Xcode 3.2";
128 | developmentRegion = English;
129 | hasScannedForEncodings = 0;
130 | knownRegions = (
131 | en,
132 | Base,
133 | "zh-Hans",
134 | );
135 | mainGroup = 2C26ECF91D9227F2005EA2BD;
136 | productRefGroup = 2C26ED031D9227F2005EA2BD /* Products */;
137 | projectDirPath = "";
138 | projectRoot = "";
139 | targets = (
140 | 2C26ED011D9227F2005EA2BD /* LYCLocalization */,
141 | );
142 | };
143 | /* End PBXProject section */
144 |
145 | /* Begin PBXResourcesBuildPhase section */
146 | 2C26ED001D9227F2005EA2BD /* Resources */ = {
147 | isa = PBXResourcesBuildPhase;
148 | buildActionMask = 2147483647;
149 | files = (
150 | 2C26ED3B1D927FB8005EA2BD /* Localizable.strings in Resources */,
151 | 2C26ED101D9227F2005EA2BD /* LaunchScreen.storyboard in Resources */,
152 | 2C26ED0D1D9227F2005EA2BD /* Assets.xcassets in Resources */,
153 | 2C26ED0B1D9227F2005EA2BD /* Main.storyboard in Resources */,
154 | );
155 | runOnlyForDeploymentPostprocessing = 0;
156 | };
157 | /* End PBXResourcesBuildPhase section */
158 |
159 | /* Begin PBXSourcesBuildPhase section */
160 | 2C26ECFE1D9227F2005EA2BD /* Sources */ = {
161 | isa = PBXSourcesBuildPhase;
162 | buildActionMask = 2147483647;
163 | files = (
164 | 2C26ED3A1D927FB8005EA2BD /* LYCLocalization.swift in Sources */,
165 | 2C26ED081D9227F2005EA2BD /* ViewController.swift in Sources */,
166 | 2C26ED061D9227F2005EA2BD /* AppDelegate.swift in Sources */,
167 | );
168 | runOnlyForDeploymentPostprocessing = 0;
169 | };
170 | /* End PBXSourcesBuildPhase section */
171 |
172 | /* Begin PBXVariantGroup section */
173 | 2C26ED091D9227F2005EA2BD /* Main.storyboard */ = {
174 | isa = PBXVariantGroup;
175 | children = (
176 | 2C26ED0A1D9227F2005EA2BD /* Base */,
177 | );
178 | name = Main.storyboard;
179 | sourceTree = "";
180 | };
181 | 2C26ED0E1D9227F2005EA2BD /* LaunchScreen.storyboard */ = {
182 | isa = PBXVariantGroup;
183 | children = (
184 | 2C26ED0F1D9227F2005EA2BD /* Base */,
185 | );
186 | name = LaunchScreen.storyboard;
187 | sourceTree = "";
188 | };
189 | 2C26ED351D927FB8005EA2BD /* Localizable.strings */ = {
190 | isa = PBXVariantGroup;
191 | children = (
192 | 2C26ED361D927FB8005EA2BD /* en */,
193 | 2C26ED371D927FB8005EA2BD /* zh-Hans */,
194 | );
195 | name = Localizable.strings;
196 | sourceTree = "";
197 | };
198 | /* End PBXVariantGroup section */
199 |
200 | /* Begin XCBuildConfiguration section */
201 | 2C26ED121D9227F2005EA2BD /* Debug */ = {
202 | isa = XCBuildConfiguration;
203 | buildSettings = {
204 | ALWAYS_SEARCH_USER_PATHS = NO;
205 | CLANG_ANALYZER_NONNULL = YES;
206 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
207 | CLANG_CXX_LIBRARY = "libc++";
208 | CLANG_ENABLE_MODULES = YES;
209 | CLANG_ENABLE_OBJC_ARC = YES;
210 | CLANG_WARN_BOOL_CONVERSION = YES;
211 | CLANG_WARN_CONSTANT_CONVERSION = YES;
212 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
213 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
214 | CLANG_WARN_EMPTY_BODY = YES;
215 | CLANG_WARN_ENUM_CONVERSION = YES;
216 | CLANG_WARN_INFINITE_RECURSION = YES;
217 | CLANG_WARN_INT_CONVERSION = YES;
218 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
219 | CLANG_WARN_SUSPICIOUS_MOVES = YES;
220 | CLANG_WARN_UNREACHABLE_CODE = YES;
221 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
222 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
223 | COPY_PHASE_STRIP = NO;
224 | DEBUG_INFORMATION_FORMAT = dwarf;
225 | ENABLE_STRICT_OBJC_MSGSEND = YES;
226 | ENABLE_TESTABILITY = YES;
227 | GCC_C_LANGUAGE_STANDARD = gnu99;
228 | GCC_DYNAMIC_NO_PIC = NO;
229 | GCC_NO_COMMON_BLOCKS = YES;
230 | GCC_OPTIMIZATION_LEVEL = 0;
231 | GCC_PREPROCESSOR_DEFINITIONS = (
232 | "DEBUG=1",
233 | "$(inherited)",
234 | );
235 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
236 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
237 | GCC_WARN_UNDECLARED_SELECTOR = YES;
238 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
239 | GCC_WARN_UNUSED_FUNCTION = YES;
240 | GCC_WARN_UNUSED_VARIABLE = YES;
241 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
242 | MTL_ENABLE_DEBUG_INFO = YES;
243 | ONLY_ACTIVE_ARCH = YES;
244 | SDKROOT = iphoneos;
245 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
246 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
247 | TARGETED_DEVICE_FAMILY = "1,2";
248 | };
249 | name = Debug;
250 | };
251 | 2C26ED131D9227F2005EA2BD /* Release */ = {
252 | isa = XCBuildConfiguration;
253 | buildSettings = {
254 | ALWAYS_SEARCH_USER_PATHS = NO;
255 | CLANG_ANALYZER_NONNULL = YES;
256 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
257 | CLANG_CXX_LIBRARY = "libc++";
258 | CLANG_ENABLE_MODULES = YES;
259 | CLANG_ENABLE_OBJC_ARC = YES;
260 | CLANG_WARN_BOOL_CONVERSION = YES;
261 | CLANG_WARN_CONSTANT_CONVERSION = YES;
262 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
263 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
264 | CLANG_WARN_EMPTY_BODY = YES;
265 | CLANG_WARN_ENUM_CONVERSION = YES;
266 | CLANG_WARN_INFINITE_RECURSION = YES;
267 | CLANG_WARN_INT_CONVERSION = YES;
268 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
269 | CLANG_WARN_SUSPICIOUS_MOVES = YES;
270 | CLANG_WARN_UNREACHABLE_CODE = YES;
271 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
272 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
273 | COPY_PHASE_STRIP = NO;
274 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
275 | ENABLE_NS_ASSERTIONS = NO;
276 | ENABLE_STRICT_OBJC_MSGSEND = YES;
277 | GCC_C_LANGUAGE_STANDARD = gnu99;
278 | GCC_NO_COMMON_BLOCKS = YES;
279 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
280 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
281 | GCC_WARN_UNDECLARED_SELECTOR = YES;
282 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
283 | GCC_WARN_UNUSED_FUNCTION = YES;
284 | GCC_WARN_UNUSED_VARIABLE = YES;
285 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
286 | MTL_ENABLE_DEBUG_INFO = NO;
287 | SDKROOT = iphoneos;
288 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
289 | TARGETED_DEVICE_FAMILY = "1,2";
290 | VALIDATE_PRODUCT = YES;
291 | };
292 | name = Release;
293 | };
294 | 2C26ED151D9227F2005EA2BD /* Debug */ = {
295 | isa = XCBuildConfiguration;
296 | buildSettings = {
297 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
298 | INFOPLIST_FILE = LYCLocalization/Info.plist;
299 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
300 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
301 | PRODUCT_BUNDLE_IDENTIFIER = com.lyc.LYCLocalization;
302 | PRODUCT_NAME = "$(TARGET_NAME)";
303 | SWIFT_VERSION = 3.0;
304 | };
305 | name = Debug;
306 | };
307 | 2C26ED161D9227F2005EA2BD /* Release */ = {
308 | isa = XCBuildConfiguration;
309 | buildSettings = {
310 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
311 | INFOPLIST_FILE = LYCLocalization/Info.plist;
312 | IPHONEOS_DEPLOYMENT_TARGET = 9.3;
313 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
314 | PRODUCT_BUNDLE_IDENTIFIER = com.lyc.LYCLocalization;
315 | PRODUCT_NAME = "$(TARGET_NAME)";
316 | SWIFT_VERSION = 3.0;
317 | };
318 | name = Release;
319 | };
320 | /* End XCBuildConfiguration section */
321 |
322 | /* Begin XCConfigurationList section */
323 | 2C26ECFD1D9227F2005EA2BD /* Build configuration list for PBXProject "LYCLocalization" */ = {
324 | isa = XCConfigurationList;
325 | buildConfigurations = (
326 | 2C26ED121D9227F2005EA2BD /* Debug */,
327 | 2C26ED131D9227F2005EA2BD /* Release */,
328 | );
329 | defaultConfigurationIsVisible = 0;
330 | defaultConfigurationName = Release;
331 | };
332 | 2C26ED141D9227F2005EA2BD /* Build configuration list for PBXNativeTarget "LYCLocalization" */ = {
333 | isa = XCConfigurationList;
334 | buildConfigurations = (
335 | 2C26ED151D9227F2005EA2BD /* Debug */,
336 | 2C26ED161D9227F2005EA2BD /* Release */,
337 | );
338 | defaultConfigurationIsVisible = 0;
339 | defaultConfigurationName = Release;
340 | };
341 | /* End XCConfigurationList section */
342 | };
343 | rootObject = 2C26ECFA1D9227F2005EA2BD /* Project object */;
344 | }
345 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/AppDelegate.swiftdeps:
--------------------------------------------------------------------------------
1 | ### Swift dependencies file v0 ###
2 | provides-top-level:
3 | - "AppDelegate"
4 | provides-nominal:
5 | - "C15LYCLocalization11AppDelegate"
6 | provides-member:
7 | - ["C15LYCLocalization11AppDelegate", ""]
8 | provides-dynamic-lookup:
9 | - "applicationWillResignActive"
10 | - "applicationDidBecomeActive"
11 | - "applicationWillEnterForeground"
12 | - "applicationDidEnterBackground"
13 | - "application"
14 | - "window"
15 | - "applicationWillTerminate"
16 | depends-top-level:
17 | - "UIApplicationLaunchOptionsKey"
18 | - "AppDelegate"
19 | - !private "BooleanLiteralType"
20 | - "UIResponder"
21 | - "UIApplication"
22 | - "UIWindow"
23 | - "Bool"
24 | - "UIApplicationDelegate"
25 | depends-member:
26 | - ["Ps9AnyObject", "application"]
27 | - ["Ps9AnyObject", "applicationDidBecomeActive"]
28 | - ["Ps9AnyObject", "applicationDidEnterBackground"]
29 | - ["Ps9AnyObject", "applicationDidFinishLaunching"]
30 | - ["Ps9AnyObject", "applicationDidReceiveMemoryWarning"]
31 | - ["Ps9AnyObject", "applicationProtectedDataDidBecomeAvailable"]
32 | - ["Ps9AnyObject", "applicationProtectedDataWillBecomeUnavailable"]
33 | - ["Ps9AnyObject", "applicationShouldRequestHealthAuthorization"]
34 | - ["Ps9AnyObject", "applicationSignificantTimeChange"]
35 | - ["Ps9AnyObject", "applicationWillEnterForeground"]
36 | - ["Ps9AnyObject", "applicationWillResignActive"]
37 | - ["Ps9AnyObject", "applicationWillTerminate"]
38 | - !private ["Ps9AnyObject", "init"]
39 | - ["Ps9AnyObject", "window"]
40 | - ["Ps9AnyObject", ""]
41 | - ["C15LYCLocalization11AppDelegate", "Bool"]
42 | - ["C15LYCLocalization11AppDelegate", "UIApplication"]
43 | - ["C15LYCLocalization11AppDelegate", "UIApplicationLaunchOptionsKey"]
44 | - ["C15LYCLocalization11AppDelegate", "UIWindow"]
45 | - ["C15LYCLocalization11AppDelegate", "application"]
46 | - ["C15LYCLocalization11AppDelegate", "applicationDidBecomeActive"]
47 | - ["C15LYCLocalization11AppDelegate", "applicationDidEnterBackground"]
48 | - ["C15LYCLocalization11AppDelegate", "applicationDidFinishLaunching"]
49 | - ["C15LYCLocalization11AppDelegate", "applicationDidReceiveMemoryWarning"]
50 | - ["C15LYCLocalization11AppDelegate", "applicationProtectedDataDidBecomeAvailable"]
51 | - ["C15LYCLocalization11AppDelegate", "applicationProtectedDataWillBecomeUnavailable"]
52 | - ["C15LYCLocalization11AppDelegate", "applicationShouldRequestHealthAuthorization"]
53 | - ["C15LYCLocalization11AppDelegate", "applicationSignificantTimeChange"]
54 | - ["C15LYCLocalization11AppDelegate", "applicationWillEnterForeground"]
55 | - ["C15LYCLocalization11AppDelegate", "applicationWillResignActive"]
56 | - ["C15LYCLocalization11AppDelegate", "applicationWillTerminate"]
57 | - ["C15LYCLocalization11AppDelegate", "deinit"]
58 | - ["C15LYCLocalization11AppDelegate", "init"]
59 | - ["C15LYCLocalization11AppDelegate", "window"]
60 | - ["Sb", "deinit"]
61 | - ["Ps7CVarArg", "application"]
62 | - ["Ps7CVarArg", "applicationDidBecomeActive"]
63 | - ["Ps7CVarArg", "applicationDidEnterBackground"]
64 | - ["Ps7CVarArg", "applicationDidFinishLaunching"]
65 | - ["Ps7CVarArg", "applicationDidReceiveMemoryWarning"]
66 | - ["Ps7CVarArg", "applicationProtectedDataDidBecomeAvailable"]
67 | - ["Ps7CVarArg", "applicationProtectedDataWillBecomeUnavailable"]
68 | - ["Ps7CVarArg", "applicationShouldRequestHealthAuthorization"]
69 | - ["Ps7CVarArg", "applicationSignificantTimeChange"]
70 | - ["Ps7CVarArg", "applicationWillEnterForeground"]
71 | - ["Ps7CVarArg", "applicationWillResignActive"]
72 | - ["Ps7CVarArg", "applicationWillTerminate"]
73 | - !private ["Ps7CVarArg", "init"]
74 | - ["Ps7CVarArg", "window"]
75 | - ["Ps7CVarArg", ""]
76 | - ["Ps28CustomDebugStringConvertible", "application"]
77 | - ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"]
78 | - ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"]
79 | - ["Ps28CustomDebugStringConvertible", "applicationDidFinishLaunching"]
80 | - ["Ps28CustomDebugStringConvertible", "applicationDidReceiveMemoryWarning"]
81 | - ["Ps28CustomDebugStringConvertible", "applicationProtectedDataDidBecomeAvailable"]
82 | - ["Ps28CustomDebugStringConvertible", "applicationProtectedDataWillBecomeUnavailable"]
83 | - ["Ps28CustomDebugStringConvertible", "applicationShouldRequestHealthAuthorization"]
84 | - ["Ps28CustomDebugStringConvertible", "applicationSignificantTimeChange"]
85 | - ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"]
86 | - ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"]
87 | - ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"]
88 | - !private ["Ps28CustomDebugStringConvertible", "init"]
89 | - ["Ps28CustomDebugStringConvertible", "window"]
90 | - ["Ps28CustomDebugStringConvertible", ""]
91 | - ["Ps23CustomStringConvertible", "application"]
92 | - ["Ps23CustomStringConvertible", "applicationDidBecomeActive"]
93 | - ["Ps23CustomStringConvertible", "applicationDidEnterBackground"]
94 | - ["Ps23CustomStringConvertible", "applicationDidFinishLaunching"]
95 | - ["Ps23CustomStringConvertible", "applicationDidReceiveMemoryWarning"]
96 | - ["Ps23CustomStringConvertible", "applicationProtectedDataDidBecomeAvailable"]
97 | - ["Ps23CustomStringConvertible", "applicationProtectedDataWillBecomeUnavailable"]
98 | - ["Ps23CustomStringConvertible", "applicationShouldRequestHealthAuthorization"]
99 | - ["Ps23CustomStringConvertible", "applicationSignificantTimeChange"]
100 | - ["Ps23CustomStringConvertible", "applicationWillEnterForeground"]
101 | - ["Ps23CustomStringConvertible", "applicationWillResignActive"]
102 | - ["Ps23CustomStringConvertible", "applicationWillTerminate"]
103 | - !private ["Ps23CustomStringConvertible", "init"]
104 | - ["Ps23CustomStringConvertible", "window"]
105 | - ["Ps23CustomStringConvertible", ""]
106 | - ["Ps9Equatable", "application"]
107 | - ["Ps9Equatable", "applicationDidBecomeActive"]
108 | - ["Ps9Equatable", "applicationDidEnterBackground"]
109 | - ["Ps9Equatable", "applicationDidFinishLaunching"]
110 | - ["Ps9Equatable", "applicationDidReceiveMemoryWarning"]
111 | - ["Ps9Equatable", "applicationProtectedDataDidBecomeAvailable"]
112 | - ["Ps9Equatable", "applicationProtectedDataWillBecomeUnavailable"]
113 | - ["Ps9Equatable", "applicationShouldRequestHealthAuthorization"]
114 | - ["Ps9Equatable", "applicationSignificantTimeChange"]
115 | - ["Ps9Equatable", "applicationWillEnterForeground"]
116 | - ["Ps9Equatable", "applicationWillResignActive"]
117 | - ["Ps9Equatable", "applicationWillTerminate"]
118 | - !private ["Ps9Equatable", "init"]
119 | - ["Ps9Equatable", "window"]
120 | - ["Ps9Equatable", ""]
121 | - ["Ps8Hashable", "application"]
122 | - ["Ps8Hashable", "applicationDidBecomeActive"]
123 | - ["Ps8Hashable", "applicationDidEnterBackground"]
124 | - ["Ps8Hashable", "applicationDidFinishLaunching"]
125 | - ["Ps8Hashable", "applicationDidReceiveMemoryWarning"]
126 | - ["Ps8Hashable", "applicationProtectedDataDidBecomeAvailable"]
127 | - ["Ps8Hashable", "applicationProtectedDataWillBecomeUnavailable"]
128 | - ["Ps8Hashable", "applicationShouldRequestHealthAuthorization"]
129 | - ["Ps8Hashable", "applicationSignificantTimeChange"]
130 | - ["Ps8Hashable", "applicationWillEnterForeground"]
131 | - ["Ps8Hashable", "applicationWillResignActive"]
132 | - ["Ps8Hashable", "applicationWillTerminate"]
133 | - !private ["Ps8Hashable", "init"]
134 | - ["Ps8Hashable", "window"]
135 | - ["Ps8Hashable", ""]
136 | - ["CSo8NSObject", "Bool"]
137 | - ["CSo8NSObject", "UIApplication"]
138 | - ["CSo8NSObject", "UIApplicationLaunchOptionsKey"]
139 | - ["CSo8NSObject", "UIWindow"]
140 | - ["CSo8NSObject", "application"]
141 | - ["CSo8NSObject", "applicationDidBecomeActive"]
142 | - ["CSo8NSObject", "applicationDidEnterBackground"]
143 | - ["CSo8NSObject", "applicationDidFinishLaunching"]
144 | - ["CSo8NSObject", "applicationDidReceiveMemoryWarning"]
145 | - ["CSo8NSObject", "applicationProtectedDataDidBecomeAvailable"]
146 | - ["CSo8NSObject", "applicationProtectedDataWillBecomeUnavailable"]
147 | - ["CSo8NSObject", "applicationShouldRequestHealthAuthorization"]
148 | - ["CSo8NSObject", "applicationSignificantTimeChange"]
149 | - ["CSo8NSObject", "applicationWillEnterForeground"]
150 | - ["CSo8NSObject", "applicationWillResignActive"]
151 | - ["CSo8NSObject", "applicationWillTerminate"]
152 | - ["CSo8NSObject", "init"]
153 | - ["CSo8NSObject", "window"]
154 | - ["PSo16NSObjectProtocol", "application"]
155 | - ["PSo16NSObjectProtocol", "applicationDidBecomeActive"]
156 | - ["PSo16NSObjectProtocol", "applicationDidEnterBackground"]
157 | - ["PSo16NSObjectProtocol", "applicationDidFinishLaunching"]
158 | - ["PSo16NSObjectProtocol", "applicationDidReceiveMemoryWarning"]
159 | - ["PSo16NSObjectProtocol", "applicationProtectedDataDidBecomeAvailable"]
160 | - ["PSo16NSObjectProtocol", "applicationProtectedDataWillBecomeUnavailable"]
161 | - ["PSo16NSObjectProtocol", "applicationShouldRequestHealthAuthorization"]
162 | - ["PSo16NSObjectProtocol", "applicationSignificantTimeChange"]
163 | - ["PSo16NSObjectProtocol", "applicationWillEnterForeground"]
164 | - ["PSo16NSObjectProtocol", "applicationWillResignActive"]
165 | - ["PSo16NSObjectProtocol", "applicationWillTerminate"]
166 | - !private ["PSo16NSObjectProtocol", "init"]
167 | - ["PSo16NSObjectProtocol", "window"]
168 | - ["PSo16NSObjectProtocol", ""]
169 | - ["Sq", "deinit"]
170 | - ["PSo21UIApplicationDelegate", "application"]
171 | - ["PSo21UIApplicationDelegate", "applicationDidBecomeActive"]
172 | - ["PSo21UIApplicationDelegate", "applicationDidEnterBackground"]
173 | - ["PSo21UIApplicationDelegate", "applicationDidFinishLaunching"]
174 | - ["PSo21UIApplicationDelegate", "applicationDidReceiveMemoryWarning"]
175 | - ["PSo21UIApplicationDelegate", "applicationProtectedDataDidBecomeAvailable"]
176 | - ["PSo21UIApplicationDelegate", "applicationProtectedDataWillBecomeUnavailable"]
177 | - ["PSo21UIApplicationDelegate", "applicationShouldRequestHealthAuthorization"]
178 | - ["PSo21UIApplicationDelegate", "applicationSignificantTimeChange"]
179 | - ["PSo21UIApplicationDelegate", "applicationWillEnterForeground"]
180 | - ["PSo21UIApplicationDelegate", "applicationWillResignActive"]
181 | - ["PSo21UIApplicationDelegate", "applicationWillTerminate"]
182 | - ["PSo21UIApplicationDelegate", "window"]
183 | - ["PSo21UIApplicationDelegate", ""]
184 | - ["CSo11UIResponder", "Bool"]
185 | - ["CSo11UIResponder", "UIApplication"]
186 | - ["CSo11UIResponder", "UIApplicationLaunchOptionsKey"]
187 | - ["CSo11UIResponder", "UIWindow"]
188 | - ["CSo11UIResponder", "application"]
189 | - ["CSo11UIResponder", "applicationDidBecomeActive"]
190 | - ["CSo11UIResponder", "applicationDidEnterBackground"]
191 | - ["CSo11UIResponder", "applicationDidFinishLaunching"]
192 | - ["CSo11UIResponder", "applicationDidReceiveMemoryWarning"]
193 | - ["CSo11UIResponder", "applicationProtectedDataDidBecomeAvailable"]
194 | - ["CSo11UIResponder", "applicationProtectedDataWillBecomeUnavailable"]
195 | - ["CSo11UIResponder", "applicationShouldRequestHealthAuthorization"]
196 | - ["CSo11UIResponder", "applicationSignificantTimeChange"]
197 | - ["CSo11UIResponder", "applicationWillEnterForeground"]
198 | - ["CSo11UIResponder", "applicationWillResignActive"]
199 | - ["CSo11UIResponder", "applicationWillTerminate"]
200 | - ["CSo11UIResponder", "deinit"]
201 | - ["CSo11UIResponder", "init"]
202 | - ["CSo11UIResponder", "window"]
203 | - ["CSo11UIResponder", ""]
204 | - ["PSo30UIResponderStandardEditActions", "application"]
205 | - ["PSo30UIResponderStandardEditActions", "applicationDidBecomeActive"]
206 | - ["PSo30UIResponderStandardEditActions", "applicationDidEnterBackground"]
207 | - ["PSo30UIResponderStandardEditActions", "applicationDidFinishLaunching"]
208 | - ["PSo30UIResponderStandardEditActions", "applicationDidReceiveMemoryWarning"]
209 | - ["PSo30UIResponderStandardEditActions", "applicationProtectedDataDidBecomeAvailable"]
210 | - ["PSo30UIResponderStandardEditActions", "applicationProtectedDataWillBecomeUnavailable"]
211 | - ["PSo30UIResponderStandardEditActions", "applicationShouldRequestHealthAuthorization"]
212 | - ["PSo30UIResponderStandardEditActions", "applicationSignificantTimeChange"]
213 | - ["PSo30UIResponderStandardEditActions", "applicationWillEnterForeground"]
214 | - ["PSo30UIResponderStandardEditActions", "applicationWillResignActive"]
215 | - ["PSo30UIResponderStandardEditActions", "applicationWillTerminate"]
216 | - !private ["PSo30UIResponderStandardEditActions", "init"]
217 | - ["PSo30UIResponderStandardEditActions", "window"]
218 | - ["PSo30UIResponderStandardEditActions", ""]
219 | - ["Ps9_Hashable", "application"]
220 | - ["Ps9_Hashable", "applicationDidBecomeActive"]
221 | - ["Ps9_Hashable", "applicationDidEnterBackground"]
222 | - ["Ps9_Hashable", "applicationDidFinishLaunching"]
223 | - ["Ps9_Hashable", "applicationDidReceiveMemoryWarning"]
224 | - ["Ps9_Hashable", "applicationProtectedDataDidBecomeAvailable"]
225 | - ["Ps9_Hashable", "applicationProtectedDataWillBecomeUnavailable"]
226 | - ["Ps9_Hashable", "applicationShouldRequestHealthAuthorization"]
227 | - ["Ps9_Hashable", "applicationSignificantTimeChange"]
228 | - ["Ps9_Hashable", "applicationWillEnterForeground"]
229 | - ["Ps9_Hashable", "applicationWillResignActive"]
230 | - ["Ps9_Hashable", "applicationWillTerminate"]
231 | - !private ["Ps9_Hashable", "init"]
232 | - ["Ps9_Hashable", "window"]
233 | - ["Ps9_Hashable", ""]
234 | depends-nominal:
235 | - "Ps9AnyObject"
236 | - "C15LYCLocalization11AppDelegate"
237 | - "Sb"
238 | - "Ps7CVarArg"
239 | - "Ps28CustomDebugStringConvertible"
240 | - "Ps23CustomStringConvertible"
241 | - "Ps9Equatable"
242 | - "Ps8Hashable"
243 | - "CSo8NSObject"
244 | - "PSo16NSObjectProtocol"
245 | - "Sq"
246 | - "PSo21UIApplicationDelegate"
247 | - "CSo11UIResponder"
248 | - "PSo30UIResponderStandardEditActions"
249 | - "Ps9_Hashable"
250 | depends-dynamic-lookup:
251 | depends-external:
252 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule"
253 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule"
254 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule"
255 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule"
256 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule"
257 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule"
258 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule"
259 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule"
260 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule"
261 | interface-hash: "7e85a999868267b7cde0941f4dd635ac"
262 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.swiftdeps:
--------------------------------------------------------------------------------
1 | ### Swift dependencies file v0 ###
2 | provides-top-level:
3 | - "LYCLocalization"
4 | provides-nominal:
5 | - "C15LYCLocalization15LYCLocalization"
6 | provides-member:
7 | - ["C15LYCLocalization15LYCLocalization", ""]
8 | - ["SS", ""]
9 | - ["SS", "localized"]
10 | provides-dynamic-lookup:
11 | depends-top-level:
12 | - "Dictionary"
13 | - !private "!"
14 | - "LYCLocalization"
15 | - !private "BooleanLiteralType"
16 | - "StringLiteralType"
17 | - !private "Range"
18 | - !private "UserDefaults"
19 | - "Bundle"
20 | - "CastingPrecedence"
21 | - "AssignmentPrecedence"
22 | - !private "=="
23 | - !private "Array"
24 | - "String"
25 | - !private "!="
26 | - "TernaryPrecedence"
27 | depends-member:
28 | - !private ["Ps9AnyObject", "Bundle"]
29 | - ["Ps9AnyObject", "LYCLocalization"]
30 | - !private ["Ps9AnyObject", "UserDefaults"]
31 | - !private ["Ps9AnyObject", "bundle"]
32 | - !private ["Ps9AnyObject", "curLang"]
33 | - !private ["Ps9AnyObject", "defaultTool"]
34 | - !private ["Ps9AnyObject", "default_lang_key"]
35 | - ["Ps9AnyObject", "init"]
36 | - !private ["Ps9AnyObject", "isEmpty"]
37 | - !private ["Ps9AnyObject", "local_dict_all"]
38 | - !private ["Ps9AnyObject", "localizedString"]
39 | - !private ["Ps9AnyObject", "main"]
40 | - !private ["Ps9AnyObject", "path"]
41 | - !private ["Ps9AnyObject", "range"]
42 | - !private ["Ps9AnyObject", "set"]
43 | - !private ["Ps9AnyObject", "setupSupportedLangs"]
44 | - !private ["Ps9AnyObject", "standard"]
45 | - !private ["Ps9AnyObject", "userLangKey"]
46 | - !private ["Ps9AnyObject", "value"]
47 | - ["Ps9AnyObject", ""]
48 | - !private ["Sa", "Index"]
49 | - !private ["Sa", "SubSequence"]
50 | - ["Sa", "deinit"]
51 | - !private ["Sa", "subscript"]
52 | - !private ["Ps23BidirectionalCollection", "Index"]
53 | - !private ["Ps23BidirectionalCollection", "IndexDistance"]
54 | - !private ["Ps23BidirectionalCollection", "Indices"]
55 | - !private ["Ps23BidirectionalCollection", "Iterator"]
56 | - !private ["Ps23BidirectionalCollection", "SubSequence"]
57 | - !private ["Ps23BidirectionalCollection", "_Element"]
58 | - !private ["Ps23BidirectionalCollection", "subscript"]
59 | - !private ["Ps22BidirectionalIndexable", "Index"]
60 | - !private ["Ps22BidirectionalIndexable", "IndexDistance"]
61 | - !private ["Ps22BidirectionalIndexable", "Indices"]
62 | - !private ["Ps22BidirectionalIndexable", "Iterator"]
63 | - !private ["Ps22BidirectionalIndexable", "SubSequence"]
64 | - !private ["Ps22BidirectionalIndexable", "_Element"]
65 | - !private ["Ps22BidirectionalIndexable", "subscript"]
66 | - !private ["Vs18BidirectionalSlice", "Index"]
67 | - !private ["Vs18BidirectionalSlice", "IndexDistance"]
68 | - !private ["Vs18BidirectionalSlice", "Indices"]
69 | - !private ["Vs18BidirectionalSlice", "Iterator"]
70 | - !private ["Vs18BidirectionalSlice", "SubSequence"]
71 | - !private ["Vs18BidirectionalSlice", "_Element"]
72 | - !private ["Ps17BitwiseOperations", "IntegerLiteralType"]
73 | - !private ["Ps17BitwiseOperations", "Stride"]
74 | - !private ["Ps17BitwiseOperations", "_DisabledRangeIndex"]
75 | - !private ["Sb", "_getBuiltinLogicValue"]
76 | - ["Sb", "deinit"]
77 | - ["CSo6Bundle", "deinit"]
78 | - !private ["CSo6Bundle", "init"]
79 | - !private ["CSo6Bundle", "localizedString"]
80 | - !private ["CSo6Bundle", "main"]
81 | - !private ["CSo6Bundle", "path"]
82 | - !private ["Ps7CVarArg", "Bundle"]
83 | - !private ["Ps7CVarArg", "Index"]
84 | - !private ["Ps7CVarArg", "IntegerLiteralType"]
85 | - !private ["Ps7CVarArg", "Iterator"]
86 | - !private ["Ps7CVarArg", "Key"]
87 | - !private ["Ps7CVarArg", "LYCLocalization"]
88 | - !private ["Ps7CVarArg", "Stride"]
89 | - !private ["Ps7CVarArg", "SubSequence"]
90 | - !private ["Ps7CVarArg", "Value"]
91 | - !private ["Ps7CVarArg", "_DisabledRangeIndex"]
92 | - ["Ps7CVarArg", "init"]
93 | - !private ["Ps7CVarArg", "isEmpty"]
94 | - !private ["Ps7CVarArg", "localizedString"]
95 | - !private ["Ps7CVarArg", "main"]
96 | - !private ["Ps7CVarArg", "path"]
97 | - !private ["Ps7CVarArg", "range"]
98 | - !private ["Ps7CVarArg", "set"]
99 | - !private ["Ps7CVarArg", "standard"]
100 | - !private ["Ps7CVarArg", "subscript"]
101 | - !private ["Ps7CVarArg", "value"]
102 | - !private ["Ps7CVarArg", "values"]
103 | - !private ["Ps10Collection", "Index"]
104 | - !private ["Ps10Collection", "IndexDistance"]
105 | - !private ["Ps10Collection", "Indices"]
106 | - !private ["Ps10Collection", "Iterator"]
107 | - !private ["Ps10Collection", "Key"]
108 | - !private ["Ps10Collection", "SubSequence"]
109 | - !private ["Ps10Collection", "Value"]
110 | - !private ["Ps10Collection", "_Element"]
111 | - !private ["Ps10Collection", "subscript"]
112 | - !private ["Ps10Collection", "values"]
113 | - !private ["Ps10Comparable", "Bundle"]
114 | - !private ["Ps10Comparable", "IntegerLiteralType"]
115 | - !private ["Ps10Comparable", "LYCLocalization"]
116 | - !private ["Ps10Comparable", "Stride"]
117 | - !private ["Ps10Comparable", "_DisabledRangeIndex"]
118 | - ["Ps10Comparable", "init"]
119 | - !private ["Ps10Comparable", "isEmpty"]
120 | - !private ["Ps10Comparable", "range"]
121 | - !private ["Ps28CustomDebugStringConvertible", "Bundle"]
122 | - !private ["Ps28CustomDebugStringConvertible", "Index"]
123 | - !private ["Ps28CustomDebugStringConvertible", "Iterator"]
124 | - !private ["Ps28CustomDebugStringConvertible", "Key"]
125 | - !private ["Ps28CustomDebugStringConvertible", "LYCLocalization"]
126 | - !private ["Ps28CustomDebugStringConvertible", "SubSequence"]
127 | - !private ["Ps28CustomDebugStringConvertible", "Value"]
128 | - ["Ps28CustomDebugStringConvertible", "init"]
129 | - !private ["Ps28CustomDebugStringConvertible", "isEmpty"]
130 | - !private ["Ps28CustomDebugStringConvertible", "localizedString"]
131 | - !private ["Ps28CustomDebugStringConvertible", "main"]
132 | - !private ["Ps28CustomDebugStringConvertible", "path"]
133 | - !private ["Ps28CustomDebugStringConvertible", "range"]
134 | - !private ["Ps28CustomDebugStringConvertible", "set"]
135 | - !private ["Ps28CustomDebugStringConvertible", "standard"]
136 | - !private ["Ps28CustomDebugStringConvertible", "subscript"]
137 | - !private ["Ps28CustomDebugStringConvertible", "value"]
138 | - !private ["Ps28CustomDebugStringConvertible", "values"]
139 | - !private ["Ps29CustomPlaygroundQuickLookable", "Bundle"]
140 | - !private ["Ps29CustomPlaygroundQuickLookable", "IntegerLiteralType"]
141 | - !private ["Ps29CustomPlaygroundQuickLookable", "LYCLocalization"]
142 | - !private ["Ps29CustomPlaygroundQuickLookable", "Stride"]
143 | - !private ["Ps29CustomPlaygroundQuickLookable", "_DisabledRangeIndex"]
144 | - !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"]
145 | - ["Ps29CustomPlaygroundQuickLookable", "init"]
146 | - !private ["Ps29CustomPlaygroundQuickLookable", "isEmpty"]
147 | - !private ["Ps29CustomPlaygroundQuickLookable", "range"]
148 | - !private ["Ps17CustomReflectable", "Bundle"]
149 | - !private ["Ps17CustomReflectable", "Index"]
150 | - !private ["Ps17CustomReflectable", "IntegerLiteralType"]
151 | - !private ["Ps17CustomReflectable", "Iterator"]
152 | - !private ["Ps17CustomReflectable", "Key"]
153 | - !private ["Ps17CustomReflectable", "LYCLocalization"]
154 | - !private ["Ps17CustomReflectable", "Stride"]
155 | - !private ["Ps17CustomReflectable", "SubSequence"]
156 | - !private ["Ps17CustomReflectable", "Value"]
157 | - !private ["Ps17CustomReflectable", "_DisabledRangeIndex"]
158 | - !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"]
159 | - ["Ps17CustomReflectable", "init"]
160 | - !private ["Ps17CustomReflectable", "isEmpty"]
161 | - !private ["Ps17CustomReflectable", "range"]
162 | - !private ["Ps17CustomReflectable", "subscript"]
163 | - !private ["Ps17CustomReflectable", "values"]
164 | - !private ["Ps23CustomStringConvertible", "Bundle"]
165 | - !private ["Ps23CustomStringConvertible", "Index"]
166 | - !private ["Ps23CustomStringConvertible", "IntegerLiteralType"]
167 | - !private ["Ps23CustomStringConvertible", "Iterator"]
168 | - !private ["Ps23CustomStringConvertible", "Key"]
169 | - !private ["Ps23CustomStringConvertible", "LYCLocalization"]
170 | - !private ["Ps23CustomStringConvertible", "Stride"]
171 | - !private ["Ps23CustomStringConvertible", "SubSequence"]
172 | - !private ["Ps23CustomStringConvertible", "Value"]
173 | - !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"]
174 | - !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"]
175 | - ["Ps23CustomStringConvertible", "init"]
176 | - !private ["Ps23CustomStringConvertible", "isEmpty"]
177 | - !private ["Ps23CustomStringConvertible", "localizedString"]
178 | - !private ["Ps23CustomStringConvertible", "main"]
179 | - !private ["Ps23CustomStringConvertible", "path"]
180 | - !private ["Ps23CustomStringConvertible", "range"]
181 | - !private ["Ps23CustomStringConvertible", "set"]
182 | - !private ["Ps23CustomStringConvertible", "standard"]
183 | - !private ["Ps23CustomStringConvertible", "subscript"]
184 | - !private ["Ps23CustomStringConvertible", "value"]
185 | - !private ["Ps23CustomStringConvertible", "values"]
186 | - !private ["Vs27DefaultBidirectionalIndices", "Index"]
187 | - !private ["Vs27DefaultBidirectionalIndices", "Iterator"]
188 | - !private ["Vs27DefaultBidirectionalIndices", "SubSequence"]
189 | - !private ["Vs27DefaultBidirectionalIndices", "_Element"]
190 | - !private ["Vs26DefaultRandomAccessIndices", "Index"]
191 | - !private ["Vs26DefaultRandomAccessIndices", "IndexDistance"]
192 | - !private ["Vs26DefaultRandomAccessIndices", "Indices"]
193 | - !private ["Vs26DefaultRandomAccessIndices", "Iterator"]
194 | - !private ["Vs26DefaultRandomAccessIndices", "SubSequence"]
195 | - !private ["Vs26DefaultRandomAccessIndices", "_Element"]
196 | - !private ["Vs10Dictionary", "Iterator"]
197 | - !private ["Vs10Dictionary", "Key"]
198 | - !private ["Vs10Dictionary", "Value"]
199 | - ["Vs10Dictionary", "deinit"]
200 | - !private ["Vs10Dictionary", "subscript"]
201 | - !private ["Vs10Dictionary", "values"]
202 | - !private ["Ps9Equatable", "Bundle"]
203 | - !private ["Ps9Equatable", "IntegerLiteralType"]
204 | - !private ["Ps9Equatable", "LYCLocalization"]
205 | - !private ["Ps9Equatable", "Stride"]
206 | - !private ["Ps9Equatable", "_DisabledRangeIndex"]
207 | - !private ["Ps9Equatable", "_getBuiltinLogicValue"]
208 | - ["Ps9Equatable", "init"]
209 | - !private ["Ps9Equatable", "isEmpty"]
210 | - !private ["Ps9Equatable", "localizedString"]
211 | - !private ["Ps9Equatable", "main"]
212 | - !private ["Ps9Equatable", "path"]
213 | - !private ["Ps9Equatable", "range"]
214 | - !private ["Ps9Equatable", "set"]
215 | - !private ["Ps9Equatable", "standard"]
216 | - !private ["Ps9Equatable", "value"]
217 | - !private ["Ps25ExpressibleByArrayLiteral", "Index"]
218 | - !private ["Ps25ExpressibleByArrayLiteral", "SubSequence"]
219 | - !private ["Ps25ExpressibleByArrayLiteral", "subscript"]
220 | - !private ["Ps27ExpressibleByBooleanLiteral", "_getBuiltinLogicValue"]
221 | - !private ["Ps30ExpressibleByDictionaryLiteral", "Iterator"]
222 | - !private ["Ps30ExpressibleByDictionaryLiteral", "Key"]
223 | - !private ["Ps30ExpressibleByDictionaryLiteral", "Value"]
224 | - !private ["Ps30ExpressibleByDictionaryLiteral", "subscript"]
225 | - !private ["Ps30ExpressibleByDictionaryLiteral", "values"]
226 | - !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "Bundle"]
227 | - !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "LYCLocalization"]
228 | - ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "init"]
229 | - !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "isEmpty"]
230 | - !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "range"]
231 | - !private ["Ps27ExpressibleByIntegerLiteral", "IntegerLiteralType"]
232 | - !private ["Ps27ExpressibleByIntegerLiteral", "Stride"]
233 | - !private ["Ps27ExpressibleByIntegerLiteral", "_DisabledRangeIndex"]
234 | - !private ["Ps32ExpressibleByStringInterpolation", "Bundle"]
235 | - !private ["Ps32ExpressibleByStringInterpolation", "LYCLocalization"]
236 | - ["Ps32ExpressibleByStringInterpolation", "init"]
237 | - !private ["Ps32ExpressibleByStringInterpolation", "isEmpty"]
238 | - !private ["Ps32ExpressibleByStringInterpolation", "range"]
239 | - !private ["Ps26ExpressibleByStringLiteral", "Bundle"]
240 | - !private ["Ps26ExpressibleByStringLiteral", "LYCLocalization"]
241 | - ["Ps26ExpressibleByStringLiteral", "init"]
242 | - !private ["Ps26ExpressibleByStringLiteral", "isEmpty"]
243 | - !private ["Ps26ExpressibleByStringLiteral", "range"]
244 | - !private ["Ps33ExpressibleByUnicodeScalarLiteral", "Bundle"]
245 | - !private ["Ps33ExpressibleByUnicodeScalarLiteral", "LYCLocalization"]
246 | - ["Ps33ExpressibleByUnicodeScalarLiteral", "init"]
247 | - !private ["Ps33ExpressibleByUnicodeScalarLiteral", "isEmpty"]
248 | - !private ["Ps33ExpressibleByUnicodeScalarLiteral", "range"]
249 | - !private ["Ps8Hashable", "Bundle"]
250 | - !private ["Ps8Hashable", "IntegerLiteralType"]
251 | - !private ["Ps8Hashable", "LYCLocalization"]
252 | - !private ["Ps8Hashable", "Stride"]
253 | - !private ["Ps8Hashable", "_DisabledRangeIndex"]
254 | - !private ["Ps8Hashable", "_getBuiltinLogicValue"]
255 | - ["Ps8Hashable", "init"]
256 | - !private ["Ps8Hashable", "isEmpty"]
257 | - !private ["Ps8Hashable", "localizedString"]
258 | - !private ["Ps8Hashable", "main"]
259 | - !private ["Ps8Hashable", "path"]
260 | - !private ["Ps8Hashable", "range"]
261 | - !private ["Ps8Hashable", "set"]
262 | - !private ["Ps8Hashable", "standard"]
263 | - !private ["Ps8Hashable", "value"]
264 | - !private ["Ps9Indexable", "Index"]
265 | - !private ["Ps9Indexable", "IndexDistance"]
266 | - !private ["Ps9Indexable", "Indices"]
267 | - !private ["Ps9Indexable", "Iterator"]
268 | - !private ["Ps9Indexable", "Key"]
269 | - !private ["Ps9Indexable", "SubSequence"]
270 | - !private ["Ps9Indexable", "Value"]
271 | - !private ["Ps9Indexable", "_Element"]
272 | - !private ["Ps9Indexable", "subscript"]
273 | - !private ["Ps9Indexable", "values"]
274 | - !private ["Ps13IndexableBase", "Index"]
275 | - !private ["Ps13IndexableBase", "IndexDistance"]
276 | - !private ["Ps13IndexableBase", "Indices"]
277 | - !private ["Ps13IndexableBase", "Iterator"]
278 | - !private ["Ps13IndexableBase", "Key"]
279 | - !private ["Ps13IndexableBase", "SubSequence"]
280 | - !private ["Ps13IndexableBase", "Value"]
281 | - !private ["Ps13IndexableBase", "_Element"]
282 | - !private ["Ps13IndexableBase", "subscript"]
283 | - !private ["Ps13IndexableBase", "values"]
284 | - !private ["Vs16IndexingIterator", "Element"]
285 | - !private ["Si", "IntegerLiteralType"]
286 | - !private ["Si", "Stride"]
287 | - !private ["Si", "_DisabledRangeIndex"]
288 | - ["Si", "deinit"]
289 | - !private ["Ps7Integer", "IntegerLiteralType"]
290 | - !private ["Ps7Integer", "Stride"]
291 | - !private ["Ps7Integer", "_DisabledRangeIndex"]
292 | - !private ["Ps17IntegerArithmetic", "IntegerLiteralType"]
293 | - !private ["Ps17IntegerArithmetic", "Stride"]
294 | - !private ["Ps17IntegerArithmetic", "_DisabledRangeIndex"]
295 | - !private ["Ps16IteratorProtocol", "Element"]
296 | - !private ["C15LYCLocalization15LYCLocalization", "Array"]
297 | - ["C15LYCLocalization15LYCLocalization", "Bundle"]
298 | - ["C15LYCLocalization15LYCLocalization", "Dictionary"]
299 | - ["C15LYCLocalization15LYCLocalization", "LYCLocalization"]
300 | - !private ["C15LYCLocalization15LYCLocalization", "Range"]
301 | - ["C15LYCLocalization15LYCLocalization", "String"]
302 | - !private ["C15LYCLocalization15LYCLocalization", "UserDefaults"]
303 | - ["C15LYCLocalization15LYCLocalization", "bundle"]
304 | - ["C15LYCLocalization15LYCLocalization", "curLang"]
305 | - ["C15LYCLocalization15LYCLocalization", "defaultTool"]
306 | - !private ["C15LYCLocalization15LYCLocalization", "default_lang_key"]
307 | - ["C15LYCLocalization15LYCLocalization", "deinit"]
308 | - ["C15LYCLocalization15LYCLocalization", "init"]
309 | - !private ["C15LYCLocalization15LYCLocalization", "local_dict_all"]
310 | - ["C15LYCLocalization15LYCLocalization", "setupSupportedLangs"]
311 | - !private ["C15LYCLocalization15LYCLocalization", "userLangKey"]
312 | - !private ["Ps22LazyCollectionProtocol", "Iterator"]
313 | - !private ["Vs17LazyMapCollection", "Iterator"]
314 | - ["Vs17LazyMapCollection", "deinit"]
315 | - !private ["Vs15LazyMapIterator", "Element"]
316 | - !private ["Ps20LazySequenceProtocol", "Iterator"]
317 | - !private ["Ps25LosslessStringConvertible", "Bundle"]
318 | - !private ["Ps25LosslessStringConvertible", "LYCLocalization"]
319 | - !private ["Ps25LosslessStringConvertible", "_getBuiltinLogicValue"]
320 | - ["Ps25LosslessStringConvertible", "init"]
321 | - !private ["Ps25LosslessStringConvertible", "isEmpty"]
322 | - !private ["Ps25LosslessStringConvertible", "range"]
323 | - !private ["Ps10MirrorPath", "Bundle"]
324 | - !private ["Ps10MirrorPath", "IntegerLiteralType"]
325 | - !private ["Ps10MirrorPath", "LYCLocalization"]
326 | - !private ["Ps10MirrorPath", "Stride"]
327 | - !private ["Ps10MirrorPath", "_DisabledRangeIndex"]
328 | - ["Ps10MirrorPath", "init"]
329 | - !private ["Ps10MirrorPath", "isEmpty"]
330 | - !private ["Ps10MirrorPath", "range"]
331 | - !private ["Ps17MutableCollection", "Index"]
332 | - !private ["Ps17MutableCollection", "SubSequence"]
333 | - !private ["Ps17MutableCollection", "subscript"]
334 | - !private ["Ps16MutableIndexable", "Index"]
335 | - !private ["Ps16MutableIndexable", "SubSequence"]
336 | - !private ["Ps16MutableIndexable", "subscript"]
337 | - ["PSo8NSCoding", "init"]
338 | - !private ["PSo8NSCoding", "isEmpty"]
339 | - !private ["PSo8NSCoding", "range"]
340 | - ["PSo9NSCopying", "init"]
341 | - !private ["PSo9NSCopying", "isEmpty"]
342 | - !private ["PSo9NSCopying", "range"]
343 | - ["PSo16NSMutableCopying", "init"]
344 | - !private ["PSo16NSMutableCopying", "isEmpty"]
345 | - !private ["PSo16NSMutableCopying", "range"]
346 | - ["CSo8NSObject", "init"]
347 | - !private ["CSo8NSObject", "isEmpty"]
348 | - !private ["CSo8NSObject", "localizedString"]
349 | - !private ["CSo8NSObject", "main"]
350 | - !private ["CSo8NSObject", "path"]
351 | - !private ["CSo8NSObject", "range"]
352 | - !private ["CSo8NSObject", "set"]
353 | - !private ["CSo8NSObject", "standard"]
354 | - !private ["CSo8NSObject", "value"]
355 | - ["PSo16NSObjectProtocol", "init"]
356 | - !private ["PSo16NSObjectProtocol", "isEmpty"]
357 | - !private ["PSo16NSObjectProtocol", "localizedString"]
358 | - !private ["PSo16NSObjectProtocol", "main"]
359 | - !private ["PSo16NSObjectProtocol", "path"]
360 | - !private ["PSo16NSObjectProtocol", "range"]
361 | - !private ["PSo16NSObjectProtocol", "set"]
362 | - !private ["PSo16NSObjectProtocol", "standard"]
363 | - !private ["PSo16NSObjectProtocol", "value"]
364 | - ["PSo14NSSecureCoding", "init"]
365 | - !private ["PSo14NSSecureCoding", "isEmpty"]
366 | - !private ["PSo14NSSecureCoding", "range"]
367 | - ["CSo8NSString", "init"]
368 | - !private ["CSo8NSString", "isEmpty"]
369 | - !private ["CSo8NSString", "range"]
370 | - ["Sq", "deinit"]
371 | - !private ["Ps22RandomAccessCollection", "Index"]
372 | - !private ["Ps22RandomAccessCollection", "IndexDistance"]
373 | - !private ["Ps22RandomAccessCollection", "Indices"]
374 | - !private ["Ps22RandomAccessCollection", "Iterator"]
375 | - !private ["Ps22RandomAccessCollection", "SubSequence"]
376 | - !private ["Ps22RandomAccessCollection", "_Element"]
377 | - !private ["Ps22RandomAccessCollection", "subscript"]
378 | - !private ["Ps21RandomAccessIndexable", "Index"]
379 | - !private ["Ps21RandomAccessIndexable", "IndexDistance"]
380 | - !private ["Ps21RandomAccessIndexable", "Indices"]
381 | - !private ["Ps21RandomAccessIndexable", "Iterator"]
382 | - !private ["Ps21RandomAccessIndexable", "SubSequence"]
383 | - !private ["Ps21RandomAccessIndexable", "_Element"]
384 | - !private ["Ps21RandomAccessIndexable", "subscript"]
385 | - !private ["Vs17RandomAccessSlice", "Index"]
386 | - !private ["Vs17RandomAccessSlice", "IndexDistance"]
387 | - !private ["Vs17RandomAccessSlice", "Indices"]
388 | - !private ["Vs17RandomAccessSlice", "Iterator"]
389 | - !private ["Vs17RandomAccessSlice", "SubSequence"]
390 | - !private ["Vs17RandomAccessSlice", "_Element"]
391 | - ["Vs5Range", "deinit"]
392 | - !private ["Vs5Range", "isEmpty"]
393 | - !private ["Ps26RangeReplaceableCollection", "Index"]
394 | - !private ["Ps26RangeReplaceableCollection", "SubSequence"]
395 | - !private ["Ps26RangeReplaceableCollection", "subscript"]
396 | - !private ["Ps25RangeReplaceableIndexable", "Index"]
397 | - !private ["Ps25RangeReplaceableIndexable", "SubSequence"]
398 | - !private ["Ps25RangeReplaceableIndexable", "subscript"]
399 | - !private ["Ps8Sequence", "Element"]
400 | - !private ["Ps8Sequence", "Index"]
401 | - !private ["Ps8Sequence", "IndexDistance"]
402 | - !private ["Ps8Sequence", "Indices"]
403 | - !private ["Ps8Sequence", "Iterator"]
404 | - !private ["Ps8Sequence", "Key"]
405 | - !private ["Ps8Sequence", "SubSequence"]
406 | - !private ["Ps8Sequence", "Value"]
407 | - !private ["Ps8Sequence", "_Element"]
408 | - !private ["Ps8Sequence", "subscript"]
409 | - !private ["Ps8Sequence", "values"]
410 | - !private ["Ps13SignedInteger", "IntegerLiteralType"]
411 | - !private ["Ps13SignedInteger", "Stride"]
412 | - !private ["Ps13SignedInteger", "_DisabledRangeIndex"]
413 | - !private ["Ps12SignedNumber", "IntegerLiteralType"]
414 | - !private ["Ps12SignedNumber", "Stride"]
415 | - !private ["Ps12SignedNumber", "_DisabledRangeIndex"]
416 | - !private ["Vs5Slice", "Index"]
417 | - !private ["Vs5Slice", "Iterator"]
418 | - !private ["Vs5Slice", "SubSequence"]
419 | - !private ["Vs5Slice", "_Element"]
420 | - !private ["Ps10Strideable", "IntegerLiteralType"]
421 | - !private ["Ps10Strideable", "Stride"]
422 | - !private ["Ps10Strideable", "_DisabledRangeIndex"]
423 | - !private ["SS", "Bundle"]
424 | - !private ["SS", "LYCLocalization"]
425 | - ["SS", "String"]
426 | - ["SS", "deinit"]
427 | - ["SS", "init"]
428 | - !private ["SS", "isEmpty"]
429 | - ["SS", "localized"]
430 | - !private ["SS", "range"]
431 | - !private ["Ps16TextOutputStream", "Bundle"]
432 | - !private ["Ps16TextOutputStream", "LYCLocalization"]
433 | - ["Ps16TextOutputStream", "init"]
434 | - !private ["Ps16TextOutputStream", "isEmpty"]
435 | - !private ["Ps16TextOutputStream", "range"]
436 | - !private ["Ps20TextOutputStreamable", "Bundle"]
437 | - !private ["Ps20TextOutputStreamable", "LYCLocalization"]
438 | - ["Ps20TextOutputStreamable", "init"]
439 | - !private ["Ps20TextOutputStreamable", "isEmpty"]
440 | - !private ["Ps20TextOutputStreamable", "range"]
441 | - ["CSo12UserDefaults", "deinit"]
442 | - !private ["CSo12UserDefaults", "set"]
443 | - !private ["CSo12UserDefaults", "standard"]
444 | - !private ["CSo12UserDefaults", "value"]
445 | - !private ["Ps14_ArrayProtocol", "Index"]
446 | - !private ["Ps14_ArrayProtocol", "SubSequence"]
447 | - !private ["Ps14_ArrayProtocol", "subscript"]
448 | - !private ["Ps24_DestructorSafeContainer", "Index"]
449 | - !private ["Ps24_DestructorSafeContainer", "SubSequence"]
450 | - !private ["Ps24_DestructorSafeContainer", "subscript"]
451 | - !private ["Ps35_ExpressibleByBuiltinBooleanLiteral", "_getBuiltinLogicValue"]
452 | - !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "Bundle"]
453 | - !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "LYCLocalization"]
454 | - ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "init"]
455 | - !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "isEmpty"]
456 | - !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "range"]
457 | - !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "IntegerLiteralType"]
458 | - !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "Stride"]
459 | - !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "_DisabledRangeIndex"]
460 | - !private ["Ps34_ExpressibleByBuiltinStringLiteral", "Bundle"]
461 | - !private ["Ps34_ExpressibleByBuiltinStringLiteral", "LYCLocalization"]
462 | - ["Ps34_ExpressibleByBuiltinStringLiteral", "init"]
463 | - !private ["Ps34_ExpressibleByBuiltinStringLiteral", "isEmpty"]
464 | - !private ["Ps34_ExpressibleByBuiltinStringLiteral", "range"]
465 | - !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "Bundle"]
466 | - !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "LYCLocalization"]
467 | - ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "init"]
468 | - !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "isEmpty"]
469 | - !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "range"]
470 | - !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "Bundle"]
471 | - !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "LYCLocalization"]
472 | - ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "init"]
473 | - !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "isEmpty"]
474 | - !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "range"]
475 | - ["Ps35_HasCustomAnyHashableRepresentation", "init"]
476 | - !private ["Ps35_HasCustomAnyHashableRepresentation", "isEmpty"]
477 | - !private ["Ps35_HasCustomAnyHashableRepresentation", "range"]
478 | - !private ["Ps9_Hashable", "Bundle"]
479 | - !private ["Ps9_Hashable", "IntegerLiteralType"]
480 | - !private ["Ps9_Hashable", "LYCLocalization"]
481 | - !private ["Ps9_Hashable", "Stride"]
482 | - !private ["Ps9_Hashable", "_DisabledRangeIndex"]
483 | - !private ["Ps9_Hashable", "_getBuiltinLogicValue"]
484 | - ["Ps9_Hashable", "init"]
485 | - !private ["Ps9_Hashable", "isEmpty"]
486 | - !private ["Ps9_Hashable", "localizedString"]
487 | - !private ["Ps9_Hashable", "main"]
488 | - !private ["Ps9_Hashable", "path"]
489 | - !private ["Ps9_Hashable", "range"]
490 | - !private ["Ps9_Hashable", "set"]
491 | - !private ["Ps9_Hashable", "standard"]
492 | - !private ["Ps9_Hashable", "value"]
493 | - !private ["Ps14_Incrementable", "IntegerLiteralType"]
494 | - !private ["Ps14_Incrementable", "Stride"]
495 | - !private ["Ps14_Incrementable", "_DisabledRangeIndex"]
496 | - !private ["Ps8_Integer", "IntegerLiteralType"]
497 | - !private ["Ps8_Integer", "Stride"]
498 | - !private ["Ps8_Integer", "_DisabledRangeIndex"]
499 | - !private ["Ps18_IntegerArithmetic", "IntegerLiteralType"]
500 | - !private ["Ps18_IntegerArithmetic", "Stride"]
501 | - !private ["Ps18_IntegerArithmetic", "_DisabledRangeIndex"]
502 | - !private ["Ps21_ObjectiveCBridgeable", "Bundle"]
503 | - !private ["Ps21_ObjectiveCBridgeable", "Index"]
504 | - !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"]
505 | - !private ["Ps21_ObjectiveCBridgeable", "Iterator"]
506 | - !private ["Ps21_ObjectiveCBridgeable", "Key"]
507 | - !private ["Ps21_ObjectiveCBridgeable", "LYCLocalization"]
508 | - !private ["Ps21_ObjectiveCBridgeable", "Stride"]
509 | - !private ["Ps21_ObjectiveCBridgeable", "SubSequence"]
510 | - !private ["Ps21_ObjectiveCBridgeable", "Value"]
511 | - !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"]
512 | - !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"]
513 | - ["Ps21_ObjectiveCBridgeable", "init"]
514 | - !private ["Ps21_ObjectiveCBridgeable", "isEmpty"]
515 | - !private ["Ps21_ObjectiveCBridgeable", "range"]
516 | - !private ["Ps21_ObjectiveCBridgeable", "subscript"]
517 | - !private ["Ps21_ObjectiveCBridgeable", "values"]
518 | - ["Vs26_OptionalNilComparisonType", "deinit"]
519 | - !private ["Ps14_SignedInteger", "IntegerLiteralType"]
520 | - !private ["Ps14_SignedInteger", "Stride"]
521 | - !private ["Ps14_SignedInteger", "_DisabledRangeIndex"]
522 | - !private ["Ps11_Strideable", "IntegerLiteralType"]
523 | - !private ["Ps11_Strideable", "Stride"]
524 | - !private ["Ps11_Strideable", "_DisabledRangeIndex"]
525 | depends-nominal:
526 | - "Ps9AnyObject"
527 | - "Sa"
528 | - !private "Ps23BidirectionalCollection"
529 | - !private "Ps22BidirectionalIndexable"
530 | - !private "Vs18BidirectionalSlice"
531 | - !private "Ps17BitwiseOperations"
532 | - "Sb"
533 | - "CSo6Bundle"
534 | - "Ps7CVarArg"
535 | - !private "Ps10Collection"
536 | - "Ps10Comparable"
537 | - "Ps28CustomDebugStringConvertible"
538 | - "Ps29CustomPlaygroundQuickLookable"
539 | - "Ps17CustomReflectable"
540 | - "Ps23CustomStringConvertible"
541 | - !private "Vs27DefaultBidirectionalIndices"
542 | - !private "Vs26DefaultRandomAccessIndices"
543 | - "Vs10Dictionary"
544 | - "Ps9Equatable"
545 | - !private "Ps25ExpressibleByArrayLiteral"
546 | - !private "Ps27ExpressibleByBooleanLiteral"
547 | - !private "Ps30ExpressibleByDictionaryLiteral"
548 | - "Ps43ExpressibleByExtendedGraphemeClusterLiteral"
549 | - !private "Ps27ExpressibleByIntegerLiteral"
550 | - "Ps32ExpressibleByStringInterpolation"
551 | - "Ps26ExpressibleByStringLiteral"
552 | - "Ps33ExpressibleByUnicodeScalarLiteral"
553 | - "Ps8Hashable"
554 | - !private "Ps9Indexable"
555 | - !private "Ps13IndexableBase"
556 | - !private "Vs16IndexingIterator"
557 | - "Si"
558 | - !private "Ps7Integer"
559 | - !private "Ps17IntegerArithmetic"
560 | - !private "Ps16IteratorProtocol"
561 | - "C15LYCLocalization15LYCLocalization"
562 | - !private "Ps22LazyCollectionProtocol"
563 | - "Vs17LazyMapCollection"
564 | - !private "Vs15LazyMapIterator"
565 | - !private "Ps20LazySequenceProtocol"
566 | - "Ps25LosslessStringConvertible"
567 | - "Ps10MirrorPath"
568 | - !private "Ps17MutableCollection"
569 | - !private "Ps16MutableIndexable"
570 | - "PSo8NSCoding"
571 | - "PSo9NSCopying"
572 | - "PSo16NSMutableCopying"
573 | - "CSo8NSObject"
574 | - "PSo16NSObjectProtocol"
575 | - "PSo14NSSecureCoding"
576 | - "CSo8NSString"
577 | - "Sq"
578 | - !private "Ps22RandomAccessCollection"
579 | - !private "Ps21RandomAccessIndexable"
580 | - !private "Vs17RandomAccessSlice"
581 | - "Vs5Range"
582 | - !private "Ps26RangeReplaceableCollection"
583 | - !private "Ps25RangeReplaceableIndexable"
584 | - !private "Ps8Sequence"
585 | - !private "Ps13SignedInteger"
586 | - !private "Ps12SignedNumber"
587 | - !private "Vs5Slice"
588 | - !private "Ps10Strideable"
589 | - "SS"
590 | - "Ps16TextOutputStream"
591 | - "Ps20TextOutputStreamable"
592 | - "CSo12UserDefaults"
593 | - !private "Ps14_ArrayProtocol"
594 | - !private "Ps24_DestructorSafeContainer"
595 | - !private "Ps35_ExpressibleByBuiltinBooleanLiteral"
596 | - "Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral"
597 | - !private "Ps35_ExpressibleByBuiltinIntegerLiteral"
598 | - "Ps34_ExpressibleByBuiltinStringLiteral"
599 | - "Ps39_ExpressibleByBuiltinUTF16StringLiteral"
600 | - "Ps41_ExpressibleByBuiltinUnicodeScalarLiteral"
601 | - "Ps35_HasCustomAnyHashableRepresentation"
602 | - "Ps9_Hashable"
603 | - !private "Ps14_Incrementable"
604 | - !private "Ps8_Integer"
605 | - !private "Ps18_IntegerArithmetic"
606 | - "Ps21_ObjectiveCBridgeable"
607 | - "Vs26_OptionalNilComparisonType"
608 | - !private "Ps14_SignedInteger"
609 | - !private "Ps11_Strideable"
610 | depends-dynamic-lookup:
611 | depends-external:
612 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule"
613 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule"
614 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule"
615 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule"
616 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule"
617 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule"
618 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule"
619 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule"
620 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule"
621 | interface-hash: "67f25c61ff0aadd561638d2fdc096295"
622 |
--------------------------------------------------------------------------------
/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/ViewController.swiftdeps:
--------------------------------------------------------------------------------
1 | ### Swift dependencies file v0 ###
2 | provides-top-level:
3 | - "ViewController"
4 | provides-nominal:
5 | - "C15LYCLocalization14ViewController"
6 | provides-member:
7 | - ["C15LYCLocalization14ViewController", ""]
8 | provides-dynamic-lookup:
9 | - "didReceiveMemoryWarning"
10 | - "viewDidLoad"
11 | - "tableView"
12 | - "tableView"
13 | - "tableView"
14 | - "tableView"
15 | - "refreshLabel"
16 | - "numberOfSections"
17 | - "textLabel"
18 | - "mainTableView"
19 | depends-top-level:
20 | - !private "=="
21 | - "Int"
22 | - "AssignmentPrecedence"
23 | - "ViewController"
24 | - "IndexPath"
25 | - "UIViewController"
26 | - "UITableView"
27 | - "UITableViewDelegate"
28 | - "CGFloat"
29 | - "UITableViewDataSource"
30 | - "UITableViewCell"
31 | - !private "LYCLocalization"
32 | - "UILabel"
33 | - !private "StringLiteralType"
34 | depends-member:
35 | - !private ["Ps9AnyObject", "LYCLocalization"]
36 | - !private ["Ps9AnyObject", "UITableViewCell"]
37 | - !private ["Ps9AnyObject", "curLang"]
38 | - !private ["Ps9AnyObject", "defaultTool"]
39 | - ["Ps9AnyObject", "didReceiveMemoryWarning"]
40 | - ["Ps9AnyObject", "indexPathForPreferredFocusedView"]
41 | - ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"]
42 | - !private ["Ps9AnyObject", "init"]
43 | - !private ["Ps9AnyObject", "localized"]
44 | - ["Ps9AnyObject", "mainTableView"]
45 | - ["Ps9AnyObject", "numberOfSections"]
46 | - ["Ps9AnyObject", "numberOfSectionsInTableView"]
47 | - ["Ps9AnyObject", "refreshLabel"]
48 | - ["Ps9AnyObject", "scrollViewDidEndDecelerating"]
49 | - ["Ps9AnyObject", "scrollViewDidEndDragging"]
50 | - ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"]
51 | - ["Ps9AnyObject", "scrollViewDidEndZooming"]
52 | - ["Ps9AnyObject", "scrollViewDidScroll"]
53 | - ["Ps9AnyObject", "scrollViewDidScrollToTop"]
54 | - ["Ps9AnyObject", "scrollViewDidZoom"]
55 | - ["Ps9AnyObject", "scrollViewShouldScrollToTop"]
56 | - ["Ps9AnyObject", "scrollViewWillBeginDecelerating"]
57 | - ["Ps9AnyObject", "scrollViewWillBeginDragging"]
58 | - ["Ps9AnyObject", "scrollViewWillBeginZooming"]
59 | - ["Ps9AnyObject", "scrollViewWillEndDragging"]
60 | - ["Ps9AnyObject", "sectionIndexTitles"]
61 | - ["Ps9AnyObject", "sectionIndexTitlesForTableView"]
62 | - ["Ps9AnyObject", "tableView"]
63 | - !private ["Ps9AnyObject", "text"]
64 | - ["Ps9AnyObject", "textLabel"]
65 | - ["Ps9AnyObject", "viewDidLoad"]
66 | - ["Ps9AnyObject", "viewForZooming"]
67 | - ["Ps9AnyObject", "viewForZoomingInScrollView"]
68 | - ["Ps9AnyObject", ""]
69 | - !private ["Ps23BidirectionalCollection", "row"]
70 | - !private ["Ps22BidirectionalIndexable", "row"]
71 | - !private ["Sb", "_getBuiltinLogicValue"]
72 | - ["Sb", "deinit"]
73 | - !private ["PSo15CALayerDelegate", "init"]
74 | - !private ["PSo15CALayerDelegate", "text"]
75 | - !private ["PSo15CALayerDelegate", "textLabel"]
76 | - ["V12CoreGraphics7CGFloat", "deinit"]
77 | - !private ["Ps7CVarArg", "LYCLocalization"]
78 | - !private ["Ps7CVarArg", "UITableViewCell"]
79 | - ["Ps7CVarArg", "didReceiveMemoryWarning"]
80 | - ["Ps7CVarArg", "indexPathForPreferredFocusedView"]
81 | - ["Ps7CVarArg", "indexPathForPreferredFocusedViewInTableView"]
82 | - !private ["Ps7CVarArg", "init"]
83 | - !private ["Ps7CVarArg", "localized"]
84 | - ["Ps7CVarArg", "mainTableView"]
85 | - ["Ps7CVarArg", "numberOfSections"]
86 | - ["Ps7CVarArg", "numberOfSectionsInTableView"]
87 | - ["Ps7CVarArg", "refreshLabel"]
88 | - ["Ps7CVarArg", "scrollViewDidEndDecelerating"]
89 | - ["Ps7CVarArg", "scrollViewDidEndDragging"]
90 | - ["Ps7CVarArg", "scrollViewDidEndScrollingAnimation"]
91 | - ["Ps7CVarArg", "scrollViewDidEndZooming"]
92 | - ["Ps7CVarArg", "scrollViewDidScroll"]
93 | - ["Ps7CVarArg", "scrollViewDidScrollToTop"]
94 | - ["Ps7CVarArg", "scrollViewDidZoom"]
95 | - ["Ps7CVarArg", "scrollViewShouldScrollToTop"]
96 | - ["Ps7CVarArg", "scrollViewWillBeginDecelerating"]
97 | - ["Ps7CVarArg", "scrollViewWillBeginDragging"]
98 | - ["Ps7CVarArg", "scrollViewWillBeginZooming"]
99 | - ["Ps7CVarArg", "scrollViewWillEndDragging"]
100 | - ["Ps7CVarArg", "sectionIndexTitles"]
101 | - ["Ps7CVarArg", "sectionIndexTitlesForTableView"]
102 | - ["Ps7CVarArg", "tableView"]
103 | - !private ["Ps7CVarArg", "text"]
104 | - ["Ps7CVarArg", "textLabel"]
105 | - ["Ps7CVarArg", "viewDidLoad"]
106 | - ["Ps7CVarArg", "viewForZooming"]
107 | - ["Ps7CVarArg", "viewForZoomingInScrollView"]
108 | - ["Ps7CVarArg", ""]
109 | - !private ["Ps10Collection", "row"]
110 | - !private ["Ps10Comparable", "init"]
111 | - !private ["Ps10Comparable", "localized"]
112 | - !private ["Ps10Comparable", "row"]
113 | - !private ["Ps28CustomDebugStringConvertible", "LYCLocalization"]
114 | - !private ["Ps28CustomDebugStringConvertible", "UITableViewCell"]
115 | - ["Ps28CustomDebugStringConvertible", "didReceiveMemoryWarning"]
116 | - ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedView"]
117 | - ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"]
118 | - !private ["Ps28CustomDebugStringConvertible", "init"]
119 | - !private ["Ps28CustomDebugStringConvertible", "localized"]
120 | - ["Ps28CustomDebugStringConvertible", "mainTableView"]
121 | - ["Ps28CustomDebugStringConvertible", "numberOfSections"]
122 | - ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"]
123 | - ["Ps28CustomDebugStringConvertible", "refreshLabel"]
124 | - !private ["Ps28CustomDebugStringConvertible", "row"]
125 | - ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"]
126 | - ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"]
127 | - ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"]
128 | - ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"]
129 | - ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"]
130 | - ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"]
131 | - ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"]
132 | - ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"]
133 | - ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"]
134 | - ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"]
135 | - ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"]
136 | - ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"]
137 | - ["Ps28CustomDebugStringConvertible", "sectionIndexTitles"]
138 | - ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"]
139 | - ["Ps28CustomDebugStringConvertible", "tableView"]
140 | - !private ["Ps28CustomDebugStringConvertible", "text"]
141 | - ["Ps28CustomDebugStringConvertible", "textLabel"]
142 | - ["Ps28CustomDebugStringConvertible", "viewDidLoad"]
143 | - ["Ps28CustomDebugStringConvertible", "viewForZooming"]
144 | - ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"]
145 | - ["Ps28CustomDebugStringConvertible", ""]
146 | - !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"]
147 | - !private ["Ps29CustomPlaygroundQuickLookable", "init"]
148 | - !private ["Ps29CustomPlaygroundQuickLookable", "localized"]
149 | - !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"]
150 | - !private ["Ps17CustomReflectable", "init"]
151 | - !private ["Ps17CustomReflectable", "localized"]
152 | - !private ["Ps17CustomReflectable", "row"]
153 | - !private ["Ps23CustomStringConvertible", "LYCLocalization"]
154 | - !private ["Ps23CustomStringConvertible", "UITableViewCell"]
155 | - !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"]
156 | - ["Ps23CustomStringConvertible", "didReceiveMemoryWarning"]
157 | - ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedView"]
158 | - ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"]
159 | - !private ["Ps23CustomStringConvertible", "init"]
160 | - !private ["Ps23CustomStringConvertible", "localized"]
161 | - ["Ps23CustomStringConvertible", "mainTableView"]
162 | - ["Ps23CustomStringConvertible", "numberOfSections"]
163 | - ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"]
164 | - ["Ps23CustomStringConvertible", "refreshLabel"]
165 | - !private ["Ps23CustomStringConvertible", "row"]
166 | - ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"]
167 | - ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"]
168 | - ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"]
169 | - ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"]
170 | - ["Ps23CustomStringConvertible", "scrollViewDidScroll"]
171 | - ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"]
172 | - ["Ps23CustomStringConvertible", "scrollViewDidZoom"]
173 | - ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"]
174 | - ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"]
175 | - ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"]
176 | - ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"]
177 | - ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"]
178 | - ["Ps23CustomStringConvertible", "sectionIndexTitles"]
179 | - ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"]
180 | - ["Ps23CustomStringConvertible", "tableView"]
181 | - !private ["Ps23CustomStringConvertible", "text"]
182 | - ["Ps23CustomStringConvertible", "textLabel"]
183 | - ["Ps23CustomStringConvertible", "viewDidLoad"]
184 | - ["Ps23CustomStringConvertible", "viewForZooming"]
185 | - ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"]
186 | - ["Ps23CustomStringConvertible", ""]
187 | - !private ["Ps9Equatable", "LYCLocalization"]
188 | - !private ["Ps9Equatable", "UITableViewCell"]
189 | - !private ["Ps9Equatable", "_getBuiltinLogicValue"]
190 | - !private ["Ps9Equatable", "default"]
191 | - ["Ps9Equatable", "didReceiveMemoryWarning"]
192 | - ["Ps9Equatable", "indexPathForPreferredFocusedView"]
193 | - ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"]
194 | - !private ["Ps9Equatable", "init"]
195 | - !private ["Ps9Equatable", "localized"]
196 | - ["Ps9Equatable", "mainTableView"]
197 | - ["Ps9Equatable", "numberOfSections"]
198 | - ["Ps9Equatable", "numberOfSectionsInTableView"]
199 | - ["Ps9Equatable", "refreshLabel"]
200 | - !private ["Ps9Equatable", "row"]
201 | - ["Ps9Equatable", "scrollViewDidEndDecelerating"]
202 | - ["Ps9Equatable", "scrollViewDidEndDragging"]
203 | - ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"]
204 | - ["Ps9Equatable", "scrollViewDidEndZooming"]
205 | - ["Ps9Equatable", "scrollViewDidScroll"]
206 | - ["Ps9Equatable", "scrollViewDidScrollToTop"]
207 | - ["Ps9Equatable", "scrollViewDidZoom"]
208 | - ["Ps9Equatable", "scrollViewShouldScrollToTop"]
209 | - ["Ps9Equatable", "scrollViewWillBeginDecelerating"]
210 | - ["Ps9Equatable", "scrollViewWillBeginDragging"]
211 | - ["Ps9Equatable", "scrollViewWillBeginZooming"]
212 | - ["Ps9Equatable", "scrollViewWillEndDragging"]
213 | - ["Ps9Equatable", "sectionIndexTitles"]
214 | - ["Ps9Equatable", "sectionIndexTitlesForTableView"]
215 | - ["Ps9Equatable", "tableView"]
216 | - !private ["Ps9Equatable", "text"]
217 | - ["Ps9Equatable", "textLabel"]
218 | - ["Ps9Equatable", "viewDidLoad"]
219 | - ["Ps9Equatable", "viewForZooming"]
220 | - ["Ps9Equatable", "viewForZoomingInScrollView"]
221 | - ["Ps9Equatable", ""]
222 | - !private ["Ps25ExpressibleByArrayLiteral", "row"]
223 | - !private ["Ps27ExpressibleByBooleanLiteral", "_getBuiltinLogicValue"]
224 | - !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "init"]
225 | - !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "localized"]
226 | - !private ["Ps32ExpressibleByStringInterpolation", "init"]
227 | - !private ["Ps32ExpressibleByStringInterpolation", "localized"]
228 | - !private ["Ps26ExpressibleByStringLiteral", "init"]
229 | - !private ["Ps26ExpressibleByStringLiteral", "localized"]
230 | - !private ["Ps33ExpressibleByUnicodeScalarLiteral", "init"]
231 | - !private ["Ps33ExpressibleByUnicodeScalarLiteral", "localized"]
232 | - !private ["Ps8Hashable", "LYCLocalization"]
233 | - !private ["Ps8Hashable", "UITableViewCell"]
234 | - !private ["Ps8Hashable", "_getBuiltinLogicValue"]
235 | - !private ["Ps8Hashable", "default"]
236 | - ["Ps8Hashable", "didReceiveMemoryWarning"]
237 | - ["Ps8Hashable", "indexPathForPreferredFocusedView"]
238 | - ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"]
239 | - !private ["Ps8Hashable", "init"]
240 | - !private ["Ps8Hashable", "localized"]
241 | - ["Ps8Hashable", "mainTableView"]
242 | - ["Ps8Hashable", "numberOfSections"]
243 | - ["Ps8Hashable", "numberOfSectionsInTableView"]
244 | - ["Ps8Hashable", "refreshLabel"]
245 | - !private ["Ps8Hashable", "row"]
246 | - ["Ps8Hashable", "scrollViewDidEndDecelerating"]
247 | - ["Ps8Hashable", "scrollViewDidEndDragging"]
248 | - ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"]
249 | - ["Ps8Hashable", "scrollViewDidEndZooming"]
250 | - ["Ps8Hashable", "scrollViewDidScroll"]
251 | - ["Ps8Hashable", "scrollViewDidScrollToTop"]
252 | - ["Ps8Hashable", "scrollViewDidZoom"]
253 | - ["Ps8Hashable", "scrollViewShouldScrollToTop"]
254 | - ["Ps8Hashable", "scrollViewWillBeginDecelerating"]
255 | - ["Ps8Hashable", "scrollViewWillBeginDragging"]
256 | - ["Ps8Hashable", "scrollViewWillBeginZooming"]
257 | - ["Ps8Hashable", "scrollViewWillEndDragging"]
258 | - ["Ps8Hashable", "sectionIndexTitles"]
259 | - ["Ps8Hashable", "sectionIndexTitlesForTableView"]
260 | - ["Ps8Hashable", "tableView"]
261 | - !private ["Ps8Hashable", "text"]
262 | - ["Ps8Hashable", "textLabel"]
263 | - ["Ps8Hashable", "viewDidLoad"]
264 | - ["Ps8Hashable", "viewForZooming"]
265 | - ["Ps8Hashable", "viewForZoomingInScrollView"]
266 | - ["Ps8Hashable", ""]
267 | - ["SQ", "deinit"]
268 | - ["V10Foundation9IndexPath", "deinit"]
269 | - !private ["V10Foundation9IndexPath", "row"]
270 | - !private ["Ps9Indexable", "row"]
271 | - !private ["Ps13IndexableBase", "row"]
272 | - ["Si", "deinit"]
273 | - !private ["C15LYCLocalization15LYCLocalization", "curLang"]
274 | - !private ["C15LYCLocalization15LYCLocalization", "defaultTool"]
275 | - ["C15LYCLocalization15LYCLocalization", "deinit"]
276 | - !private ["Ps25LosslessStringConvertible", "_getBuiltinLogicValue"]
277 | - !private ["Ps25LosslessStringConvertible", "init"]
278 | - !private ["Ps25LosslessStringConvertible", "localized"]
279 | - !private ["Ps10MirrorPath", "init"]
280 | - !private ["Ps10MirrorPath", "localized"]
281 | - !private ["Ps17MutableCollection", "row"]
282 | - !private ["Ps16MutableIndexable", "row"]
283 | - ["CSo7NSCoder", "deinit"]
284 | - !private ["PSo8NSCoding", "LYCLocalization"]
285 | - !private ["PSo8NSCoding", "UITableViewCell"]
286 | - ["PSo8NSCoding", "didReceiveMemoryWarning"]
287 | - ["PSo8NSCoding", "indexPathForPreferredFocusedView"]
288 | - ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"]
289 | - !private ["PSo8NSCoding", "init"]
290 | - !private ["PSo8NSCoding", "localized"]
291 | - ["PSo8NSCoding", "mainTableView"]
292 | - ["PSo8NSCoding", "numberOfSections"]
293 | - ["PSo8NSCoding", "numberOfSectionsInTableView"]
294 | - ["PSo8NSCoding", "refreshLabel"]
295 | - ["PSo8NSCoding", "scrollViewDidEndDecelerating"]
296 | - ["PSo8NSCoding", "scrollViewDidEndDragging"]
297 | - ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"]
298 | - ["PSo8NSCoding", "scrollViewDidEndZooming"]
299 | - ["PSo8NSCoding", "scrollViewDidScroll"]
300 | - ["PSo8NSCoding", "scrollViewDidScrollToTop"]
301 | - ["PSo8NSCoding", "scrollViewDidZoom"]
302 | - ["PSo8NSCoding", "scrollViewShouldScrollToTop"]
303 | - ["PSo8NSCoding", "scrollViewWillBeginDecelerating"]
304 | - ["PSo8NSCoding", "scrollViewWillBeginDragging"]
305 | - ["PSo8NSCoding", "scrollViewWillBeginZooming"]
306 | - ["PSo8NSCoding", "scrollViewWillEndDragging"]
307 | - ["PSo8NSCoding", "sectionIndexTitles"]
308 | - ["PSo8NSCoding", "sectionIndexTitlesForTableView"]
309 | - ["PSo8NSCoding", "tableView"]
310 | - !private ["PSo8NSCoding", "text"]
311 | - ["PSo8NSCoding", "textLabel"]
312 | - ["PSo8NSCoding", "viewDidLoad"]
313 | - ["PSo8NSCoding", "viewForZooming"]
314 | - ["PSo8NSCoding", "viewForZoomingInScrollView"]
315 | - ["PSo8NSCoding", ""]
316 | - !private ["PSo9NSCopying", "init"]
317 | - !private ["PSo9NSCopying", "localized"]
318 | - !private ["PSo26NSExtensionRequestHandling", "LYCLocalization"]
319 | - !private ["PSo26NSExtensionRequestHandling", "UITableViewCell"]
320 | - ["PSo26NSExtensionRequestHandling", "didReceiveMemoryWarning"]
321 | - ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedView"]
322 | - ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"]
323 | - !private ["PSo26NSExtensionRequestHandling", "init"]
324 | - ["PSo26NSExtensionRequestHandling", "mainTableView"]
325 | - ["PSo26NSExtensionRequestHandling", "numberOfSections"]
326 | - ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"]
327 | - ["PSo26NSExtensionRequestHandling", "refreshLabel"]
328 | - ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"]
329 | - ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"]
330 | - ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"]
331 | - ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"]
332 | - ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"]
333 | - ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"]
334 | - ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"]
335 | - ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"]
336 | - ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"]
337 | - ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"]
338 | - ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"]
339 | - ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"]
340 | - ["PSo26NSExtensionRequestHandling", "sectionIndexTitles"]
341 | - ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"]
342 | - ["PSo26NSExtensionRequestHandling", "tableView"]
343 | - ["PSo26NSExtensionRequestHandling", "textLabel"]
344 | - ["PSo26NSExtensionRequestHandling", "viewDidLoad"]
345 | - ["PSo26NSExtensionRequestHandling", "viewForZooming"]
346 | - ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"]
347 | - ["PSo26NSExtensionRequestHandling", ""]
348 | - !private ["PSo16NSMutableCopying", "init"]
349 | - !private ["PSo16NSMutableCopying", "localized"]
350 | - ["CSo8NSObject", "CGFloat"]
351 | - ["CSo8NSObject", "IndexPath"]
352 | - ["CSo8NSObject", "Int"]
353 | - !private ["CSo8NSObject", "LYCLocalization"]
354 | - ["CSo8NSObject", "UILabel"]
355 | - ["CSo8NSObject", "UITableView"]
356 | - ["CSo8NSObject", "UITableViewCell"]
357 | - ["CSo8NSObject", "didReceiveMemoryWarning"]
358 | - ["CSo8NSObject", "indexPathForPreferredFocusedView"]
359 | - ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"]
360 | - ["CSo8NSObject", "init"]
361 | - !private ["CSo8NSObject", "localized"]
362 | - ["CSo8NSObject", "mainTableView"]
363 | - ["CSo8NSObject", "numberOfSections"]
364 | - ["CSo8NSObject", "numberOfSectionsInTableView"]
365 | - ["CSo8NSObject", "refreshLabel"]
366 | - ["CSo8NSObject", "scrollViewDidEndDecelerating"]
367 | - ["CSo8NSObject", "scrollViewDidEndDragging"]
368 | - ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"]
369 | - ["CSo8NSObject", "scrollViewDidEndZooming"]
370 | - ["CSo8NSObject", "scrollViewDidScroll"]
371 | - ["CSo8NSObject", "scrollViewDidScrollToTop"]
372 | - ["CSo8NSObject", "scrollViewDidZoom"]
373 | - ["CSo8NSObject", "scrollViewShouldScrollToTop"]
374 | - ["CSo8NSObject", "scrollViewWillBeginDecelerating"]
375 | - ["CSo8NSObject", "scrollViewWillBeginDragging"]
376 | - ["CSo8NSObject", "scrollViewWillBeginZooming"]
377 | - ["CSo8NSObject", "scrollViewWillEndDragging"]
378 | - ["CSo8NSObject", "sectionIndexTitles"]
379 | - ["CSo8NSObject", "sectionIndexTitlesForTableView"]
380 | - ["CSo8NSObject", "tableView"]
381 | - !private ["CSo8NSObject", "text"]
382 | - ["CSo8NSObject", "textLabel"]
383 | - ["CSo8NSObject", "viewDidLoad"]
384 | - ["CSo8NSObject", "viewForZooming"]
385 | - ["CSo8NSObject", "viewForZoomingInScrollView"]
386 | - !private ["PSo16NSObjectProtocol", "LYCLocalization"]
387 | - !private ["PSo16NSObjectProtocol", "UITableViewCell"]
388 | - ["PSo16NSObjectProtocol", "didReceiveMemoryWarning"]
389 | - ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedView"]
390 | - ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"]
391 | - !private ["PSo16NSObjectProtocol", "init"]
392 | - !private ["PSo16NSObjectProtocol", "localized"]
393 | - ["PSo16NSObjectProtocol", "mainTableView"]
394 | - ["PSo16NSObjectProtocol", "numberOfSections"]
395 | - ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"]
396 | - ["PSo16NSObjectProtocol", "refreshLabel"]
397 | - ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"]
398 | - ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"]
399 | - ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"]
400 | - ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"]
401 | - ["PSo16NSObjectProtocol", "scrollViewDidScroll"]
402 | - ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"]
403 | - ["PSo16NSObjectProtocol", "scrollViewDidZoom"]
404 | - ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"]
405 | - ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"]
406 | - ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"]
407 | - ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"]
408 | - ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"]
409 | - ["PSo16NSObjectProtocol", "sectionIndexTitles"]
410 | - ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"]
411 | - ["PSo16NSObjectProtocol", "tableView"]
412 | - !private ["PSo16NSObjectProtocol", "text"]
413 | - ["PSo16NSObjectProtocol", "textLabel"]
414 | - ["PSo16NSObjectProtocol", "viewDidLoad"]
415 | - ["PSo16NSObjectProtocol", "viewForZooming"]
416 | - ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"]
417 | - ["PSo16NSObjectProtocol", ""]
418 | - !private ["PSo14NSSecureCoding", "init"]
419 | - !private ["PSo14NSSecureCoding", "localized"]
420 | - !private ["CSo8NSString", "init"]
421 | - !private ["CSo8NSString", "localized"]
422 | - ["Sq", "deinit"]
423 | - !private ["Ps22RandomAccessCollection", "row"]
424 | - !private ["Ps21RandomAccessIndexable", "row"]
425 | - !private ["Ps16RawRepresentable", "default"]
426 | - !private ["P10Foundation20ReferenceConvertible", "row"]
427 | - !private ["Ps8Sequence", "row"]
428 | - ["SS", "deinit"]
429 | - !private ["SS", "init"]
430 | - !private ["SS", "localized"]
431 | - !private ["Ps16TextOutputStream", "init"]
432 | - !private ["Ps16TextOutputStream", "localized"]
433 | - !private ["Ps20TextOutputStreamable", "init"]
434 | - !private ["Ps20TextOutputStreamable", "localized"]
435 | - !private ["PSo29UIAccessibilityIdentification", "init"]
436 | - !private ["PSo29UIAccessibilityIdentification", "text"]
437 | - !private ["PSo29UIAccessibilityIdentification", "textLabel"]
438 | - !private ["PSo12UIAppearance", "init"]
439 | - !private ["PSo12UIAppearance", "text"]
440 | - !private ["PSo12UIAppearance", "textLabel"]
441 | - !private ["PSo21UIAppearanceContainer", "LYCLocalization"]
442 | - !private ["PSo21UIAppearanceContainer", "UITableViewCell"]
443 | - ["PSo21UIAppearanceContainer", "didReceiveMemoryWarning"]
444 | - ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedView"]
445 | - ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"]
446 | - !private ["PSo21UIAppearanceContainer", "init"]
447 | - ["PSo21UIAppearanceContainer", "mainTableView"]
448 | - ["PSo21UIAppearanceContainer", "numberOfSections"]
449 | - ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"]
450 | - ["PSo21UIAppearanceContainer", "refreshLabel"]
451 | - ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"]
452 | - ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"]
453 | - ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"]
454 | - ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"]
455 | - ["PSo21UIAppearanceContainer", "scrollViewDidScroll"]
456 | - ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"]
457 | - ["PSo21UIAppearanceContainer", "scrollViewDidZoom"]
458 | - ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"]
459 | - ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"]
460 | - ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"]
461 | - ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"]
462 | - ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"]
463 | - ["PSo21UIAppearanceContainer", "sectionIndexTitles"]
464 | - ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"]
465 | - ["PSo21UIAppearanceContainer", "tableView"]
466 | - !private ["PSo21UIAppearanceContainer", "text"]
467 | - ["PSo21UIAppearanceContainer", "textLabel"]
468 | - ["PSo21UIAppearanceContainer", "viewDidLoad"]
469 | - ["PSo21UIAppearanceContainer", "viewForZooming"]
470 | - ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"]
471 | - ["PSo21UIAppearanceContainer", ""]
472 | - !private ["PSo18UIContentContainer", "LYCLocalization"]
473 | - !private ["PSo18UIContentContainer", "UITableViewCell"]
474 | - ["PSo18UIContentContainer", "didReceiveMemoryWarning"]
475 | - ["PSo18UIContentContainer", "indexPathForPreferredFocusedView"]
476 | - ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"]
477 | - !private ["PSo18UIContentContainer", "init"]
478 | - ["PSo18UIContentContainer", "mainTableView"]
479 | - ["PSo18UIContentContainer", "numberOfSections"]
480 | - ["PSo18UIContentContainer", "numberOfSectionsInTableView"]
481 | - ["PSo18UIContentContainer", "refreshLabel"]
482 | - ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"]
483 | - ["PSo18UIContentContainer", "scrollViewDidEndDragging"]
484 | - ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"]
485 | - ["PSo18UIContentContainer", "scrollViewDidEndZooming"]
486 | - ["PSo18UIContentContainer", "scrollViewDidScroll"]
487 | - ["PSo18UIContentContainer", "scrollViewDidScrollToTop"]
488 | - ["PSo18UIContentContainer", "scrollViewDidZoom"]
489 | - ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"]
490 | - ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"]
491 | - ["PSo18UIContentContainer", "scrollViewWillBeginDragging"]
492 | - ["PSo18UIContentContainer", "scrollViewWillBeginZooming"]
493 | - ["PSo18UIContentContainer", "scrollViewWillEndDragging"]
494 | - ["PSo18UIContentContainer", "sectionIndexTitles"]
495 | - ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"]
496 | - ["PSo18UIContentContainer", "tableView"]
497 | - ["PSo18UIContentContainer", "textLabel"]
498 | - ["PSo18UIContentContainer", "viewDidLoad"]
499 | - ["PSo18UIContentContainer", "viewForZooming"]
500 | - ["PSo18UIContentContainer", "viewForZoomingInScrollView"]
501 | - ["PSo18UIContentContainer", ""]
502 | - !private ["PSo30UIContentSizeCategoryAdjusting", "text"]
503 | - !private ["PSo17UICoordinateSpace", "init"]
504 | - !private ["PSo17UICoordinateSpace", "text"]
505 | - !private ["PSo17UICoordinateSpace", "textLabel"]
506 | - !private ["PSo13UIDynamicItem", "init"]
507 | - !private ["PSo13UIDynamicItem", "text"]
508 | - !private ["PSo13UIDynamicItem", "textLabel"]
509 | - !private ["PSo18UIFocusEnvironment", "LYCLocalization"]
510 | - !private ["PSo18UIFocusEnvironment", "UITableViewCell"]
511 | - ["PSo18UIFocusEnvironment", "didReceiveMemoryWarning"]
512 | - ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedView"]
513 | - ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"]
514 | - !private ["PSo18UIFocusEnvironment", "init"]
515 | - ["PSo18UIFocusEnvironment", "mainTableView"]
516 | - ["PSo18UIFocusEnvironment", "numberOfSections"]
517 | - ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"]
518 | - ["PSo18UIFocusEnvironment", "refreshLabel"]
519 | - ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"]
520 | - ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"]
521 | - ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"]
522 | - ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"]
523 | - ["PSo18UIFocusEnvironment", "scrollViewDidScroll"]
524 | - ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"]
525 | - ["PSo18UIFocusEnvironment", "scrollViewDidZoom"]
526 | - ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"]
527 | - ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"]
528 | - ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"]
529 | - ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"]
530 | - ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"]
531 | - ["PSo18UIFocusEnvironment", "sectionIndexTitles"]
532 | - ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"]
533 | - ["PSo18UIFocusEnvironment", "tableView"]
534 | - !private ["PSo18UIFocusEnvironment", "text"]
535 | - ["PSo18UIFocusEnvironment", "textLabel"]
536 | - ["PSo18UIFocusEnvironment", "viewDidLoad"]
537 | - ["PSo18UIFocusEnvironment", "viewForZooming"]
538 | - ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"]
539 | - ["PSo18UIFocusEnvironment", ""]
540 | - !private ["PSo11UIFocusItem", "init"]
541 | - !private ["PSo11UIFocusItem", "text"]
542 | - !private ["PSo11UIFocusItem", "textLabel"]
543 | - !private ["PSo27UIGestureRecognizerDelegate", "init"]
544 | - !private ["PSo27UIGestureRecognizerDelegate", "textLabel"]
545 | - ["CSo7UILabel", "deinit"]
546 | - !private ["CSo7UILabel", "text"]
547 | - ["CSo11UIResponder", "CGFloat"]
548 | - ["CSo11UIResponder", "IndexPath"]
549 | - ["CSo11UIResponder", "Int"]
550 | - !private ["CSo11UIResponder", "LYCLocalization"]
551 | - ["CSo11UIResponder", "UILabel"]
552 | - ["CSo11UIResponder", "UITableView"]
553 | - ["CSo11UIResponder", "UITableViewCell"]
554 | - ["CSo11UIResponder", "didReceiveMemoryWarning"]
555 | - ["CSo11UIResponder", "indexPathForPreferredFocusedView"]
556 | - ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"]
557 | - ["CSo11UIResponder", "init"]
558 | - ["CSo11UIResponder", "mainTableView"]
559 | - ["CSo11UIResponder", "numberOfSections"]
560 | - ["CSo11UIResponder", "numberOfSectionsInTableView"]
561 | - ["CSo11UIResponder", "refreshLabel"]
562 | - ["CSo11UIResponder", "scrollViewDidEndDecelerating"]
563 | - ["CSo11UIResponder", "scrollViewDidEndDragging"]
564 | - ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"]
565 | - ["CSo11UIResponder", "scrollViewDidEndZooming"]
566 | - ["CSo11UIResponder", "scrollViewDidScroll"]
567 | - ["CSo11UIResponder", "scrollViewDidScrollToTop"]
568 | - ["CSo11UIResponder", "scrollViewDidZoom"]
569 | - ["CSo11UIResponder", "scrollViewShouldScrollToTop"]
570 | - ["CSo11UIResponder", "scrollViewWillBeginDecelerating"]
571 | - ["CSo11UIResponder", "scrollViewWillBeginDragging"]
572 | - ["CSo11UIResponder", "scrollViewWillBeginZooming"]
573 | - ["CSo11UIResponder", "scrollViewWillEndDragging"]
574 | - ["CSo11UIResponder", "sectionIndexTitles"]
575 | - ["CSo11UIResponder", "sectionIndexTitlesForTableView"]
576 | - ["CSo11UIResponder", "tableView"]
577 | - !private ["CSo11UIResponder", "text"]
578 | - ["CSo11UIResponder", "textLabel"]
579 | - ["CSo11UIResponder", "viewDidLoad"]
580 | - ["CSo11UIResponder", "viewForZooming"]
581 | - ["CSo11UIResponder", "viewForZoomingInScrollView"]
582 | - !private ["PSo30UIResponderStandardEditActions", "LYCLocalization"]
583 | - !private ["PSo30UIResponderStandardEditActions", "UITableViewCell"]
584 | - ["PSo30UIResponderStandardEditActions", "didReceiveMemoryWarning"]
585 | - ["PSo30UIResponderStandardEditActions", "indexPathForPreferredFocusedView"]
586 | - ["PSo30UIResponderStandardEditActions", "indexPathForPreferredFocusedViewInTableView"]
587 | - !private ["PSo30UIResponderStandardEditActions", "init"]
588 | - ["PSo30UIResponderStandardEditActions", "mainTableView"]
589 | - ["PSo30UIResponderStandardEditActions", "numberOfSections"]
590 | - ["PSo30UIResponderStandardEditActions", "numberOfSectionsInTableView"]
591 | - ["PSo30UIResponderStandardEditActions", "refreshLabel"]
592 | - ["PSo30UIResponderStandardEditActions", "scrollViewDidEndDecelerating"]
593 | - ["PSo30UIResponderStandardEditActions", "scrollViewDidEndDragging"]
594 | - ["PSo30UIResponderStandardEditActions", "scrollViewDidEndScrollingAnimation"]
595 | - ["PSo30UIResponderStandardEditActions", "scrollViewDidEndZooming"]
596 | - ["PSo30UIResponderStandardEditActions", "scrollViewDidScroll"]
597 | - ["PSo30UIResponderStandardEditActions", "scrollViewDidScrollToTop"]
598 | - ["PSo30UIResponderStandardEditActions", "scrollViewDidZoom"]
599 | - ["PSo30UIResponderStandardEditActions", "scrollViewShouldScrollToTop"]
600 | - ["PSo30UIResponderStandardEditActions", "scrollViewWillBeginDecelerating"]
601 | - ["PSo30UIResponderStandardEditActions", "scrollViewWillBeginDragging"]
602 | - ["PSo30UIResponderStandardEditActions", "scrollViewWillBeginZooming"]
603 | - ["PSo30UIResponderStandardEditActions", "scrollViewWillEndDragging"]
604 | - ["PSo30UIResponderStandardEditActions", "sectionIndexTitles"]
605 | - ["PSo30UIResponderStandardEditActions", "sectionIndexTitlesForTableView"]
606 | - ["PSo30UIResponderStandardEditActions", "tableView"]
607 | - !private ["PSo30UIResponderStandardEditActions", "text"]
608 | - ["PSo30UIResponderStandardEditActions", "textLabel"]
609 | - ["PSo30UIResponderStandardEditActions", "viewDidLoad"]
610 | - ["PSo30UIResponderStandardEditActions", "viewForZooming"]
611 | - ["PSo30UIResponderStandardEditActions", "viewForZoomingInScrollView"]
612 | - ["PSo30UIResponderStandardEditActions", ""]
613 | - !private ["PSo20UIScrollViewDelegate", "LYCLocalization"]
614 | - !private ["PSo20UIScrollViewDelegate", "UITableViewCell"]
615 | - ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedView"]
616 | - ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"]
617 | - ["PSo20UIScrollViewDelegate", "numberOfSections"]
618 | - ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"]
619 | - !private ["PSo20UIScrollViewDelegate", "refreshLabel"]
620 | - ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"]
621 | - ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"]
622 | - ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"]
623 | - ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"]
624 | - ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"]
625 | - ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"]
626 | - ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"]
627 | - ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"]
628 | - ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"]
629 | - ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"]
630 | - ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"]
631 | - ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"]
632 | - ["PSo20UIScrollViewDelegate", "sectionIndexTitles"]
633 | - ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"]
634 | - ["PSo20UIScrollViewDelegate", "tableView"]
635 | - !private ["PSo20UIScrollViewDelegate", "textLabel"]
636 | - ["PSo20UIScrollViewDelegate", "viewForZooming"]
637 | - ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"]
638 | - ["PSo20UIScrollViewDelegate", ""]
639 | - !private ["PSo16UIStateRestoring", "LYCLocalization"]
640 | - !private ["PSo16UIStateRestoring", "UITableViewCell"]
641 | - ["PSo16UIStateRestoring", "didReceiveMemoryWarning"]
642 | - ["PSo16UIStateRestoring", "indexPathForPreferredFocusedView"]
643 | - ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"]
644 | - !private ["PSo16UIStateRestoring", "init"]
645 | - ["PSo16UIStateRestoring", "mainTableView"]
646 | - ["PSo16UIStateRestoring", "numberOfSections"]
647 | - ["PSo16UIStateRestoring", "numberOfSectionsInTableView"]
648 | - ["PSo16UIStateRestoring", "refreshLabel"]
649 | - ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"]
650 | - ["PSo16UIStateRestoring", "scrollViewDidEndDragging"]
651 | - ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"]
652 | - ["PSo16UIStateRestoring", "scrollViewDidEndZooming"]
653 | - ["PSo16UIStateRestoring", "scrollViewDidScroll"]
654 | - ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"]
655 | - ["PSo16UIStateRestoring", "scrollViewDidZoom"]
656 | - ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"]
657 | - ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"]
658 | - ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"]
659 | - ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"]
660 | - ["PSo16UIStateRestoring", "scrollViewWillEndDragging"]
661 | - ["PSo16UIStateRestoring", "sectionIndexTitles"]
662 | - ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"]
663 | - ["PSo16UIStateRestoring", "tableView"]
664 | - ["PSo16UIStateRestoring", "textLabel"]
665 | - ["PSo16UIStateRestoring", "viewDidLoad"]
666 | - ["PSo16UIStateRestoring", "viewForZooming"]
667 | - ["PSo16UIStateRestoring", "viewForZoomingInScrollView"]
668 | - ["PSo16UIStateRestoring", ""]
669 | - ["CSo15UITableViewCell", "deinit"]
670 | - !private ["CSo15UITableViewCell", "init"]
671 | - !private ["CSo15UITableViewCell", "textLabel"]
672 | - !private ["OSC20UITableViewCellStyle", "default"]
673 | - ["OSC20UITableViewCellStyle", "deinit"]
674 | - !private ["PSo21UITableViewDataSource", "LYCLocalization"]
675 | - !private ["PSo21UITableViewDataSource", "UITableViewCell"]
676 | - ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedView"]
677 | - ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"]
678 | - ["PSo21UITableViewDataSource", "numberOfSections"]
679 | - ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"]
680 | - !private ["PSo21UITableViewDataSource", "refreshLabel"]
681 | - ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"]
682 | - ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"]
683 | - ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"]
684 | - ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"]
685 | - ["PSo21UITableViewDataSource", "scrollViewDidScroll"]
686 | - ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"]
687 | - ["PSo21UITableViewDataSource", "scrollViewDidZoom"]
688 | - ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"]
689 | - ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"]
690 | - ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"]
691 | - ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"]
692 | - ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"]
693 | - ["PSo21UITableViewDataSource", "sectionIndexTitles"]
694 | - ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"]
695 | - ["PSo21UITableViewDataSource", "tableView"]
696 | - !private ["PSo21UITableViewDataSource", "textLabel"]
697 | - ["PSo21UITableViewDataSource", "viewForZooming"]
698 | - ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"]
699 | - ["PSo21UITableViewDataSource", ""]
700 | - !private ["PSo19UITableViewDelegate", "LYCLocalization"]
701 | - !private ["PSo19UITableViewDelegate", "UITableViewCell"]
702 | - ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedView"]
703 | - ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"]
704 | - ["PSo19UITableViewDelegate", "numberOfSections"]
705 | - ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"]
706 | - !private ["PSo19UITableViewDelegate", "refreshLabel"]
707 | - ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"]
708 | - ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"]
709 | - ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"]
710 | - ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"]
711 | - ["PSo19UITableViewDelegate", "scrollViewDidScroll"]
712 | - ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"]
713 | - ["PSo19UITableViewDelegate", "scrollViewDidZoom"]
714 | - ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"]
715 | - ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"]
716 | - ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"]
717 | - ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"]
718 | - ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"]
719 | - ["PSo19UITableViewDelegate", "sectionIndexTitles"]
720 | - ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"]
721 | - ["PSo19UITableViewDelegate", "tableView"]
722 | - !private ["PSo19UITableViewDelegate", "textLabel"]
723 | - ["PSo19UITableViewDelegate", "viewForZooming"]
724 | - ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"]
725 | - ["PSo19UITableViewDelegate", ""]
726 | - !private ["PSo18UITraitEnvironment", "LYCLocalization"]
727 | - !private ["PSo18UITraitEnvironment", "UITableViewCell"]
728 | - ["PSo18UITraitEnvironment", "didReceiveMemoryWarning"]
729 | - ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedView"]
730 | - ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"]
731 | - !private ["PSo18UITraitEnvironment", "init"]
732 | - ["PSo18UITraitEnvironment", "mainTableView"]
733 | - ["PSo18UITraitEnvironment", "numberOfSections"]
734 | - ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"]
735 | - ["PSo18UITraitEnvironment", "refreshLabel"]
736 | - ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"]
737 | - ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"]
738 | - ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"]
739 | - ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"]
740 | - ["PSo18UITraitEnvironment", "scrollViewDidScroll"]
741 | - ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"]
742 | - ["PSo18UITraitEnvironment", "scrollViewDidZoom"]
743 | - ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"]
744 | - ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"]
745 | - ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"]
746 | - ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"]
747 | - ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"]
748 | - ["PSo18UITraitEnvironment", "sectionIndexTitles"]
749 | - ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"]
750 | - ["PSo18UITraitEnvironment", "tableView"]
751 | - !private ["PSo18UITraitEnvironment", "text"]
752 | - ["PSo18UITraitEnvironment", "textLabel"]
753 | - ["PSo18UITraitEnvironment", "viewDidLoad"]
754 | - ["PSo18UITraitEnvironment", "viewForZooming"]
755 | - ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"]
756 | - ["PSo18UITraitEnvironment", ""]
757 | - !private ["CSo6UIView", "init"]
758 | - !private ["CSo6UIView", "text"]
759 | - !private ["CSo6UIView", "textLabel"]
760 | - ["CSo16UIViewController", "CGFloat"]
761 | - ["CSo16UIViewController", "IndexPath"]
762 | - ["CSo16UIViewController", "Int"]
763 | - !private ["CSo16UIViewController", "LYCLocalization"]
764 | - ["CSo16UIViewController", "UILabel"]
765 | - ["CSo16UIViewController", "UITableView"]
766 | - ["CSo16UIViewController", "UITableViewCell"]
767 | - ["CSo16UIViewController", "deinit"]
768 | - ["CSo16UIViewController", "didReceiveMemoryWarning"]
769 | - ["CSo16UIViewController", "indexPathForPreferredFocusedView"]
770 | - ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"]
771 | - ["CSo16UIViewController", "init"]
772 | - ["CSo16UIViewController", "mainTableView"]
773 | - ["CSo16UIViewController", "numberOfSections"]
774 | - ["CSo16UIViewController", "numberOfSectionsInTableView"]
775 | - ["CSo16UIViewController", "refreshLabel"]
776 | - ["CSo16UIViewController", "scrollViewDidEndDecelerating"]
777 | - ["CSo16UIViewController", "scrollViewDidEndDragging"]
778 | - ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"]
779 | - ["CSo16UIViewController", "scrollViewDidEndZooming"]
780 | - ["CSo16UIViewController", "scrollViewDidScroll"]
781 | - ["CSo16UIViewController", "scrollViewDidScrollToTop"]
782 | - ["CSo16UIViewController", "scrollViewDidZoom"]
783 | - ["CSo16UIViewController", "scrollViewShouldScrollToTop"]
784 | - ["CSo16UIViewController", "scrollViewWillBeginDecelerating"]
785 | - ["CSo16UIViewController", "scrollViewWillBeginDragging"]
786 | - ["CSo16UIViewController", "scrollViewWillBeginZooming"]
787 | - ["CSo16UIViewController", "scrollViewWillEndDragging"]
788 | - ["CSo16UIViewController", "sectionIndexTitles"]
789 | - ["CSo16UIViewController", "sectionIndexTitlesForTableView"]
790 | - ["CSo16UIViewController", "tableView"]
791 | - ["CSo16UIViewController", "textLabel"]
792 | - ["CSo16UIViewController", "viewDidLoad"]
793 | - ["CSo16UIViewController", "viewForZooming"]
794 | - ["CSo16UIViewController", "viewForZoomingInScrollView"]
795 | - ["CSo16UIViewController", ""]
796 | - ["C15LYCLocalization14ViewController", "CGFloat"]
797 | - ["C15LYCLocalization14ViewController", "IndexPath"]
798 | - ["C15LYCLocalization14ViewController", "Int"]
799 | - !private ["C15LYCLocalization14ViewController", "LYCLocalization"]
800 | - ["C15LYCLocalization14ViewController", "UILabel"]
801 | - ["C15LYCLocalization14ViewController", "UITableView"]
802 | - ["C15LYCLocalization14ViewController", "UITableViewCell"]
803 | - ["C15LYCLocalization14ViewController", "deinit"]
804 | - ["C15LYCLocalization14ViewController", "didReceiveMemoryWarning"]
805 | - ["C15LYCLocalization14ViewController", "indexPathForPreferredFocusedView"]
806 | - ["C15LYCLocalization14ViewController", "indexPathForPreferredFocusedViewInTableView"]
807 | - ["C15LYCLocalization14ViewController", "init"]
808 | - ["C15LYCLocalization14ViewController", "mainTableView"]
809 | - ["C15LYCLocalization14ViewController", "numberOfSections"]
810 | - ["C15LYCLocalization14ViewController", "numberOfSectionsInTableView"]
811 | - ["C15LYCLocalization14ViewController", "refreshLabel"]
812 | - ["C15LYCLocalization14ViewController", "scrollViewDidEndDecelerating"]
813 | - ["C15LYCLocalization14ViewController", "scrollViewDidEndDragging"]
814 | - ["C15LYCLocalization14ViewController", "scrollViewDidEndScrollingAnimation"]
815 | - ["C15LYCLocalization14ViewController", "scrollViewDidEndZooming"]
816 | - ["C15LYCLocalization14ViewController", "scrollViewDidScroll"]
817 | - ["C15LYCLocalization14ViewController", "scrollViewDidScrollToTop"]
818 | - ["C15LYCLocalization14ViewController", "scrollViewDidZoom"]
819 | - ["C15LYCLocalization14ViewController", "scrollViewShouldScrollToTop"]
820 | - ["C15LYCLocalization14ViewController", "scrollViewWillBeginDecelerating"]
821 | - ["C15LYCLocalization14ViewController", "scrollViewWillBeginDragging"]
822 | - ["C15LYCLocalization14ViewController", "scrollViewWillBeginZooming"]
823 | - ["C15LYCLocalization14ViewController", "scrollViewWillEndDragging"]
824 | - ["C15LYCLocalization14ViewController", "sectionIndexTitles"]
825 | - ["C15LYCLocalization14ViewController", "sectionIndexTitlesForTableView"]
826 | - ["C15LYCLocalization14ViewController", "tableView"]
827 | - ["C15LYCLocalization14ViewController", "textLabel"]
828 | - ["C15LYCLocalization14ViewController", "viewDidLoad"]
829 | - ["C15LYCLocalization14ViewController", "viewForZooming"]
830 | - ["C15LYCLocalization14ViewController", "viewForZoomingInScrollView"]
831 | - !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "init"]
832 | - !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "text"]
833 | - !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "textLabel"]
834 | - !private ["Ps35_ExpressibleByBuiltinBooleanLiteral", "_getBuiltinLogicValue"]
835 | - !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "init"]
836 | - !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "localized"]
837 | - !private ["Ps34_ExpressibleByBuiltinStringLiteral", "init"]
838 | - !private ["Ps34_ExpressibleByBuiltinStringLiteral", "localized"]
839 | - !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "init"]
840 | - !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "localized"]
841 | - !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "init"]
842 | - !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "localized"]
843 | - !private ["Ps35_HasCustomAnyHashableRepresentation", "init"]
844 | - !private ["Ps35_HasCustomAnyHashableRepresentation", "localized"]
845 | - !private ["Ps9_Hashable", "LYCLocalization"]
846 | - !private ["Ps9_Hashable", "UITableViewCell"]
847 | - !private ["Ps9_Hashable", "_getBuiltinLogicValue"]
848 | - !private ["Ps9_Hashable", "default"]
849 | - ["Ps9_Hashable", "didReceiveMemoryWarning"]
850 | - ["Ps9_Hashable", "indexPathForPreferredFocusedView"]
851 | - ["Ps9_Hashable", "indexPathForPreferredFocusedViewInTableView"]
852 | - !private ["Ps9_Hashable", "init"]
853 | - !private ["Ps9_Hashable", "localized"]
854 | - ["Ps9_Hashable", "mainTableView"]
855 | - ["Ps9_Hashable", "numberOfSections"]
856 | - ["Ps9_Hashable", "numberOfSectionsInTableView"]
857 | - ["Ps9_Hashable", "refreshLabel"]
858 | - !private ["Ps9_Hashable", "row"]
859 | - ["Ps9_Hashable", "scrollViewDidEndDecelerating"]
860 | - ["Ps9_Hashable", "scrollViewDidEndDragging"]
861 | - ["Ps9_Hashable", "scrollViewDidEndScrollingAnimation"]
862 | - ["Ps9_Hashable", "scrollViewDidEndZooming"]
863 | - ["Ps9_Hashable", "scrollViewDidScroll"]
864 | - ["Ps9_Hashable", "scrollViewDidScrollToTop"]
865 | - ["Ps9_Hashable", "scrollViewDidZoom"]
866 | - ["Ps9_Hashable", "scrollViewShouldScrollToTop"]
867 | - ["Ps9_Hashable", "scrollViewWillBeginDecelerating"]
868 | - ["Ps9_Hashable", "scrollViewWillBeginDragging"]
869 | - ["Ps9_Hashable", "scrollViewWillBeginZooming"]
870 | - ["Ps9_Hashable", "scrollViewWillEndDragging"]
871 | - ["Ps9_Hashable", "sectionIndexTitles"]
872 | - ["Ps9_Hashable", "sectionIndexTitlesForTableView"]
873 | - ["Ps9_Hashable", "tableView"]
874 | - !private ["Ps9_Hashable", "text"]
875 | - ["Ps9_Hashable", "textLabel"]
876 | - ["Ps9_Hashable", "viewDidLoad"]
877 | - ["Ps9_Hashable", "viewForZooming"]
878 | - ["Ps9_Hashable", "viewForZoomingInScrollView"]
879 | - ["Ps9_Hashable", ""]
880 | - !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"]
881 | - !private ["Ps21_ObjectiveCBridgeable", "init"]
882 | - !private ["Ps21_ObjectiveCBridgeable", "localized"]
883 | - !private ["Ps21_ObjectiveCBridgeable", "row"]
884 | depends-nominal:
885 | - "Ps9AnyObject"
886 | - !private "Ps23BidirectionalCollection"
887 | - !private "Ps22BidirectionalIndexable"
888 | - "Sb"
889 | - !private "PSo15CALayerDelegate"
890 | - "V12CoreGraphics7CGFloat"
891 | - "Ps7CVarArg"
892 | - !private "Ps10Collection"
893 | - !private "Ps10Comparable"
894 | - "Ps28CustomDebugStringConvertible"
895 | - !private "Ps29CustomPlaygroundQuickLookable"
896 | - !private "Ps17CustomReflectable"
897 | - "Ps23CustomStringConvertible"
898 | - "Ps9Equatable"
899 | - !private "Ps25ExpressibleByArrayLiteral"
900 | - !private "Ps27ExpressibleByBooleanLiteral"
901 | - !private "Ps43ExpressibleByExtendedGraphemeClusterLiteral"
902 | - !private "Ps32ExpressibleByStringInterpolation"
903 | - !private "Ps26ExpressibleByStringLiteral"
904 | - !private "Ps33ExpressibleByUnicodeScalarLiteral"
905 | - "Ps8Hashable"
906 | - "SQ"
907 | - "V10Foundation9IndexPath"
908 | - !private "Ps9Indexable"
909 | - !private "Ps13IndexableBase"
910 | - "Si"
911 | - "C15LYCLocalization15LYCLocalization"
912 | - !private "Ps25LosslessStringConvertible"
913 | - !private "Ps10MirrorPath"
914 | - !private "Ps17MutableCollection"
915 | - !private "Ps16MutableIndexable"
916 | - "CSo7NSCoder"
917 | - "PSo8NSCoding"
918 | - !private "PSo9NSCopying"
919 | - "PSo26NSExtensionRequestHandling"
920 | - !private "PSo16NSMutableCopying"
921 | - "CSo8NSObject"
922 | - "PSo16NSObjectProtocol"
923 | - !private "PSo14NSSecureCoding"
924 | - !private "CSo8NSString"
925 | - "Sq"
926 | - !private "Ps22RandomAccessCollection"
927 | - !private "Ps21RandomAccessIndexable"
928 | - !private "Ps16RawRepresentable"
929 | - !private "P10Foundation20ReferenceConvertible"
930 | - !private "Ps8Sequence"
931 | - "SS"
932 | - !private "Ps16TextOutputStream"
933 | - !private "Ps20TextOutputStreamable"
934 | - !private "PSo29UIAccessibilityIdentification"
935 | - !private "PSo12UIAppearance"
936 | - "PSo21UIAppearanceContainer"
937 | - "PSo18UIContentContainer"
938 | - !private "PSo30UIContentSizeCategoryAdjusting"
939 | - !private "PSo17UICoordinateSpace"
940 | - !private "PSo13UIDynamicItem"
941 | - "PSo18UIFocusEnvironment"
942 | - !private "PSo11UIFocusItem"
943 | - !private "PSo27UIGestureRecognizerDelegate"
944 | - "CSo7UILabel"
945 | - "CSo11UIResponder"
946 | - "PSo30UIResponderStandardEditActions"
947 | - "PSo20UIScrollViewDelegate"
948 | - "PSo16UIStateRestoring"
949 | - "CSo15UITableViewCell"
950 | - "OSC20UITableViewCellStyle"
951 | - "PSo21UITableViewDataSource"
952 | - "PSo19UITableViewDelegate"
953 | - "PSo18UITraitEnvironment"
954 | - !private "CSo6UIView"
955 | - "CSo16UIViewController"
956 | - "C15LYCLocalization14ViewController"
957 | - !private "Ps37_DefaultCustomPlaygroundQuickLookable"
958 | - !private "Ps35_ExpressibleByBuiltinBooleanLiteral"
959 | - !private "Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral"
960 | - !private "Ps34_ExpressibleByBuiltinStringLiteral"
961 | - !private "Ps39_ExpressibleByBuiltinUTF16StringLiteral"
962 | - !private "Ps41_ExpressibleByBuiltinUnicodeScalarLiteral"
963 | - !private "Ps35_HasCustomAnyHashableRepresentation"
964 | - "Ps9_Hashable"
965 | - !private "Ps21_ObjectiveCBridgeable"
966 | depends-dynamic-lookup:
967 | depends-external:
968 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule"
969 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule"
970 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule"
971 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule"
972 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule"
973 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule"
974 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule"
975 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule"
976 | - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule"
977 | interface-hash: "89b08a11ffedff9be3ae0f6a9c8a76e9"
978 |
--------------------------------------------------------------------------------