├── Example ├── NKFrameLayoutExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── earth_48x48.imageset │ │ │ ├── Contents.json │ │ │ ├── earth_48x48@1x.png │ │ │ ├── earth_48x48@2x.png │ │ │ └── earth_48x48@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── BasicFrameLayoutViewController.swift │ ├── ContentTableViewController.swift │ ├── DoubleFrameLayoutViewController.swift │ ├── Info.plist │ └── ViewController.swift ├── NKFrameLayoutKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── NKFrameLayoutKit-Example.xcscheme │ └── xcuserdata │ │ └── namkennic.xcuserdatad │ │ └── xcschemes │ │ ├── NKFrameLayoutExample.xcscheme │ │ └── xcschememanagement.plist ├── NKFrameLayoutKit.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── namkennic.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── Podfile ├── Podfile.lock └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── NKFrameLayoutKit.podspec ├── NKFrameLayoutKit └── Classes │ ├── NKDoubleFrameLayout.h │ ├── NKDoubleFrameLayout.m │ ├── NKFrameLayout.h │ ├── NKFrameLayout.m │ ├── NKFrameLayoutKit.h │ ├── NKGridFrameLayout.h │ ├── NKGridFrameLayout.m │ ├── NKStackFrameLayout.h │ ├── NKStackFrameLayout.m │ ├── NKTripleFrameLayout.h │ └── NKTripleFrameLayout.m ├── README.md ├── _Pods.xcodeproj ├── bechmark.png ├── example_grid.png └── helloWorld.png /Example/NKFrameLayoutExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Assets.xcassets/earth_48x48.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Assets.xcassets/earth_48x48.imageset/Contents.json -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Assets.xcassets/earth_48x48.imageset/earth_48x48@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Assets.xcassets/earth_48x48.imageset/earth_48x48@1x.png -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Assets.xcassets/earth_48x48.imageset/earth_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Assets.xcassets/earth_48x48.imageset/earth_48x48@2x.png -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Assets.xcassets/earth_48x48.imageset/earth_48x48@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Assets.xcassets/earth_48x48.imageset/earth_48x48@3x.png -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/BasicFrameLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/BasicFrameLayoutViewController.swift -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/ContentTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/ContentTableViewController.swift -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/DoubleFrameLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/DoubleFrameLayoutViewController.swift -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/Info.plist -------------------------------------------------------------------------------- /Example/NKFrameLayoutExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutExample/ViewController.swift -------------------------------------------------------------------------------- /Example/NKFrameLayoutKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/NKFrameLayoutKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/NKFrameLayoutKit.xcodeproj/xcshareddata/xcschemes/NKFrameLayoutKit-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutKit.xcodeproj/xcshareddata/xcschemes/NKFrameLayoutKit-Example.xcscheme -------------------------------------------------------------------------------- /Example/NKFrameLayoutKit.xcodeproj/xcuserdata/namkennic.xcuserdatad/xcschemes/NKFrameLayoutExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutKit.xcodeproj/xcuserdata/namkennic.xcuserdatad/xcschemes/NKFrameLayoutExample.xcscheme -------------------------------------------------------------------------------- /Example/NKFrameLayoutKit.xcodeproj/xcuserdata/namkennic.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutKit.xcodeproj/xcuserdata/namkennic.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/NKFrameLayoutKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/NKFrameLayoutKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/NKFrameLayoutKit.xcworkspace/xcuserdata/namkennic.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/NKFrameLayoutKit.xcworkspace/xcuserdata/namkennic.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/LICENSE -------------------------------------------------------------------------------- /NKFrameLayoutKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit.podspec -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKDoubleFrameLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKDoubleFrameLayout.h -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKDoubleFrameLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKDoubleFrameLayout.m -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKFrameLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKFrameLayout.h -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKFrameLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKFrameLayout.m -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKFrameLayoutKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKFrameLayoutKit.h -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKGridFrameLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKGridFrameLayout.h -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKGridFrameLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKGridFrameLayout.m -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKStackFrameLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKStackFrameLayout.h -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKStackFrameLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKStackFrameLayout.m -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKTripleFrameLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKTripleFrameLayout.h -------------------------------------------------------------------------------- /NKFrameLayoutKit/Classes/NKTripleFrameLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/NKFrameLayoutKit/Classes/NKTripleFrameLayout.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /bechmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/bechmark.png -------------------------------------------------------------------------------- /example_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/example_grid.png -------------------------------------------------------------------------------- /helloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennic/NKFrameLayoutKit/HEAD/helloWorld.png --------------------------------------------------------------------------------