├── .gitignore ├── KIZBehavior.podspec ├── KIZBehaviorDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── KIZBehaviorDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── hashiqi.imageset │ │ ├── Contents.json │ │ └── dog.png │ └── share.imageset │ │ ├── Contents.json │ │ ├── share_pink_hollow@2x.png │ │ └── share_pink_hollow@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Classes │ ├── CharacterLimit │ │ ├── KIZCharacterLimitBehavior.h │ │ └── KIZCharacterLimitBehavior.m │ ├── KIZBehavior.h │ ├── KIZBehavior.m │ ├── KIZMultipleProxyBehavior.h │ ├── KIZMultipleProxyBehavior.m │ ├── NavigationBar │ │ ├── KIZNavBarGradientBehavior.h │ │ ├── KIZNavBarGradientBehavior.m │ │ ├── UINavigationBar+KIZExtention.h │ │ └── UINavigationBar+KIZExtention.m │ └── ParallaxHeader │ │ ├── KIZParallaxHeaderBehavior.h │ │ └── KIZParallaxHeaderBehavior.m ├── DemoForCode.h ├── DemoForCode.m ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── KIZBehaviorDemoTests ├── Info.plist └── KIZBehaviorDemoTests.m ├── KIZBehaviorDemoUITests ├── Info.plist └── KIZBehaviorDemoUITests.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/.gitignore -------------------------------------------------------------------------------- /KIZBehavior.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehavior.podspec -------------------------------------------------------------------------------- /KIZBehaviorDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KIZBehaviorDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KIZBehaviorDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/AppDelegate.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/AppDelegate.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KIZBehaviorDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KIZBehaviorDemo/Assets.xcassets/hashiqi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Assets.xcassets/hashiqi.imageset/Contents.json -------------------------------------------------------------------------------- /KIZBehaviorDemo/Assets.xcassets/hashiqi.imageset/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Assets.xcassets/hashiqi.imageset/dog.png -------------------------------------------------------------------------------- /KIZBehaviorDemo/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Assets.xcassets/share.imageset/Contents.json -------------------------------------------------------------------------------- /KIZBehaviorDemo/Assets.xcassets/share.imageset/share_pink_hollow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Assets.xcassets/share.imageset/share_pink_hollow@2x.png -------------------------------------------------------------------------------- /KIZBehaviorDemo/Assets.xcassets/share.imageset/share_pink_hollow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Assets.xcassets/share.imageset/share_pink_hollow@3x.png -------------------------------------------------------------------------------- /KIZBehaviorDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KIZBehaviorDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/CharacterLimit/KIZCharacterLimitBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/CharacterLimit/KIZCharacterLimitBehavior.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/CharacterLimit/KIZCharacterLimitBehavior.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/CharacterLimit/KIZCharacterLimitBehavior.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/KIZBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/KIZBehavior.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/KIZBehavior.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/KIZBehavior.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/KIZMultipleProxyBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/KIZMultipleProxyBehavior.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/KIZMultipleProxyBehavior.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/KIZMultipleProxyBehavior.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/NavigationBar/KIZNavBarGradientBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/NavigationBar/KIZNavBarGradientBehavior.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/NavigationBar/KIZNavBarGradientBehavior.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/NavigationBar/KIZNavBarGradientBehavior.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/NavigationBar/UINavigationBar+KIZExtention.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/NavigationBar/UINavigationBar+KIZExtention.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/NavigationBar/UINavigationBar+KIZExtention.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/NavigationBar/UINavigationBar+KIZExtention.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/ParallaxHeader/KIZParallaxHeaderBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/ParallaxHeader/KIZParallaxHeaderBehavior.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/Classes/ParallaxHeader/KIZParallaxHeaderBehavior.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Classes/ParallaxHeader/KIZParallaxHeaderBehavior.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/DemoForCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/DemoForCode.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/DemoForCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/DemoForCode.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/Info.plist -------------------------------------------------------------------------------- /KIZBehaviorDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/ViewController.h -------------------------------------------------------------------------------- /KIZBehaviorDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/ViewController.m -------------------------------------------------------------------------------- /KIZBehaviorDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemo/main.m -------------------------------------------------------------------------------- /KIZBehaviorDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemoTests/Info.plist -------------------------------------------------------------------------------- /KIZBehaviorDemoTests/KIZBehaviorDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemoTests/KIZBehaviorDemoTests.m -------------------------------------------------------------------------------- /KIZBehaviorDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemoUITests/Info.plist -------------------------------------------------------------------------------- /KIZBehaviorDemoUITests/KIZBehaviorDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/KIZBehaviorDemoUITests/KIZBehaviorDemoUITests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zziking/KIZBehavior/HEAD/README.md --------------------------------------------------------------------------------