├── .gitignore ├── .travis.yml ├── LCNewFeature.podspec ├── LCNewFeature ├── LCNewFeatureVC.h ├── LCNewFeatureVC.m ├── UIImage+LC.h └── UIImage+LC.m ├── LCNewFeatureDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── LCNewFeatureDemo.xccheckout └── xcuserdata │ └── Leo.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── LCNewFeatureDemo.xcscheme │ └── xcschememanagement.plist ├── LCNewFeatureDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── NewFeature │ │ ├── Contents.json │ │ ├── new_feature_1.imageset │ │ ├── Contents.json │ │ └── new_feature_1@2x.png │ │ ├── new_feature_1_iphone5.imageset │ │ ├── Contents.json │ │ └── new_feature_1_568h@2x.png │ │ ├── new_feature_1_iphone6.imageset │ │ ├── Contents.json │ │ └── new_feature_1_iphone6@2x.png │ │ ├── new_feature_1_iphone6p.imageset │ │ ├── Contents.json │ │ └── new_feature_1_iphone6p@2x.png │ │ ├── new_feature_2.imageset │ │ ├── Contents.json │ │ └── new_feature_2@2x.png │ │ ├── new_feature_2_iphone5.imageset │ │ ├── Contents.json │ │ └── new_feature_2_iphone5@2x.png │ │ ├── new_feature_2_iphone6.imageset │ │ ├── Contents.json │ │ └── new_feature_2_iphone6@2x.png │ │ ├── new_feature_2_iphone6p.imageset │ │ ├── Contents.json │ │ └── new_feature_2_iphone6p@2x.png │ │ ├── new_feature_3.imageset │ │ ├── Contents.json │ │ ├── new_feature_3@2x.png │ │ └── new_feature_3_iphone5@2x.png │ │ ├── new_feature_3_iphone5.imageset │ │ ├── Contents.json │ │ └── new_feature_3_iphone5@2x.png │ │ ├── new_feature_3_iphone6.imageset │ │ ├── Contents.json │ │ └── new_feature_3_iphone6@2x.png │ │ └── new_feature_3_iphone6p.imageset │ │ ├── Contents.json │ │ └── new_feature_3_iphone6p@2x.png ├── Info.plist ├── ViewController.h ├── ViewController.m ├── main.m └── zh-Hans.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── LCNewFeatureDemoTests ├── Info.plist └── LCNewFeatureDemoTests.m ├── LICENSE ├── README.md ├── ScreenShot.png └── new_feature_1_iphone6@2x.psd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/.travis.yml -------------------------------------------------------------------------------- /LCNewFeature.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeature.podspec -------------------------------------------------------------------------------- /LCNewFeature/LCNewFeatureVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeature/LCNewFeatureVC.h -------------------------------------------------------------------------------- /LCNewFeature/LCNewFeatureVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeature/LCNewFeatureVC.m -------------------------------------------------------------------------------- /LCNewFeature/UIImage+LC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeature/UIImage+LC.h -------------------------------------------------------------------------------- /LCNewFeature/UIImage+LC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeature/UIImage+LC.m -------------------------------------------------------------------------------- /LCNewFeatureDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LCNewFeatureDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LCNewFeatureDemo.xcodeproj/project.xcworkspace/xcshareddata/LCNewFeatureDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo.xcodeproj/project.xcworkspace/xcshareddata/LCNewFeatureDemo.xccheckout -------------------------------------------------------------------------------- /LCNewFeatureDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LCNewFeatureDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/LCNewFeatureDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/LCNewFeatureDemo.xcscheme -------------------------------------------------------------------------------- /LCNewFeatureDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LCNewFeatureDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/AppDelegate.h -------------------------------------------------------------------------------- /LCNewFeatureDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/AppDelegate.m -------------------------------------------------------------------------------- /LCNewFeatureDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /LCNewFeatureDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1.imageset/new_feature_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1.imageset/new_feature_1@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone5.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone5.imageset/new_feature_1_568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone5.imageset/new_feature_1_568h@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone6.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone6.imageset/new_feature_1_iphone6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone6.imageset/new_feature_1_iphone6@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone6p.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone6p.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone6p.imageset/new_feature_1_iphone6p@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_1_iphone6p.imageset/new_feature_1_iphone6p@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2.imageset/new_feature_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2.imageset/new_feature_2@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone5.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone5.imageset/new_feature_2_iphone5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone5.imageset/new_feature_2_iphone5@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone6.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone6.imageset/new_feature_2_iphone6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone6.imageset/new_feature_2_iphone6@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone6p.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone6p.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone6p.imageset/new_feature_2_iphone6p@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_2_iphone6p.imageset/new_feature_2_iphone6p@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3.imageset/new_feature_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3.imageset/new_feature_3@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3.imageset/new_feature_3_iphone5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3.imageset/new_feature_3_iphone5@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone5.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone5.imageset/new_feature_3_iphone5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone5.imageset/new_feature_3_iphone5@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone6.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone6.imageset/new_feature_3_iphone6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone6.imageset/new_feature_3_iphone6@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone6p.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone6p.imageset/Contents.json -------------------------------------------------------------------------------- /LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone6p.imageset/new_feature_3_iphone6p@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Images.xcassets/NewFeature/new_feature_3_iphone6p.imageset/new_feature_3_iphone6p@2x.png -------------------------------------------------------------------------------- /LCNewFeatureDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/Info.plist -------------------------------------------------------------------------------- /LCNewFeatureDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/ViewController.h -------------------------------------------------------------------------------- /LCNewFeatureDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/ViewController.m -------------------------------------------------------------------------------- /LCNewFeatureDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/main.m -------------------------------------------------------------------------------- /LCNewFeatureDemo/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/zh-Hans.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /LCNewFeatureDemo/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemo/zh-Hans.lproj/Main.strings -------------------------------------------------------------------------------- /LCNewFeatureDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemoTests/Info.plist -------------------------------------------------------------------------------- /LCNewFeatureDemoTests/LCNewFeatureDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LCNewFeatureDemoTests/LCNewFeatureDemoTests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/ScreenShot.png -------------------------------------------------------------------------------- /new_feature_1_iphone6@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNewFeature/HEAD/new_feature_1_iphone6@2x.psd --------------------------------------------------------------------------------