├── .gitignore ├── LICENSE ├── README.md ├── VKURLAction.podspec ├── VKURLAction ├── UINavigationController+VKURLAction.h ├── UINavigationController+VKURLAction.m ├── VKMediatorAction.h ├── VKMediatorAction.m ├── VKMsgSend.h ├── VKMsgSend.m ├── VKURLAction.h ├── VKURLAction.m ├── VKURLParser.h └── VKURLParser.m └── VKURLActionDemo ├── Podfile ├── VKURLActionDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Awhisper.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Awhisper.xcuserdatad │ └── xcschemes │ ├── VKURLActionDemo.xcscheme │ └── xcschememanagement.plist └── VKURLActionDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── VKMediatorAction+webVC.h ├── VKMediatorAction+webVC.m ├── VKURLAction-Prefix.pch ├── ViewController.h ├── ViewController.m ├── WebViewController.h ├── WebViewController.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/README.md -------------------------------------------------------------------------------- /VKURLAction.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction.podspec -------------------------------------------------------------------------------- /VKURLAction/UINavigationController+VKURLAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/UINavigationController+VKURLAction.h -------------------------------------------------------------------------------- /VKURLAction/UINavigationController+VKURLAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/UINavigationController+VKURLAction.m -------------------------------------------------------------------------------- /VKURLAction/VKMediatorAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/VKMediatorAction.h -------------------------------------------------------------------------------- /VKURLAction/VKMediatorAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/VKMediatorAction.m -------------------------------------------------------------------------------- /VKURLAction/VKMsgSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/VKMsgSend.h -------------------------------------------------------------------------------- /VKURLAction/VKMsgSend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/VKMsgSend.m -------------------------------------------------------------------------------- /VKURLAction/VKURLAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/VKURLAction.h -------------------------------------------------------------------------------- /VKURLAction/VKURLAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/VKURLAction.m -------------------------------------------------------------------------------- /VKURLAction/VKURLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/VKURLParser.h -------------------------------------------------------------------------------- /VKURLAction/VKURLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLAction/VKURLParser.m -------------------------------------------------------------------------------- /VKURLActionDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/Podfile -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo.xcodeproj/project.xcworkspace/xcuserdata/Awhisper.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo.xcodeproj/project.xcworkspace/xcuserdata/Awhisper.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcschemes/VKURLActionDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcschemes/VKURLActionDemo.xcscheme -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/AppDelegate.h -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/AppDelegate.m -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/Info.plist -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/VKMediatorAction+webVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/VKMediatorAction+webVC.h -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/VKMediatorAction+webVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/VKMediatorAction+webVC.m -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/VKURLAction-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/VKURLAction-Prefix.pch -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/ViewController.h -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/ViewController.m -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/WebViewController.h -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/WebViewController.m -------------------------------------------------------------------------------- /VKURLActionDemo/VKURLActionDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKURLAction/HEAD/VKURLActionDemo/VKURLActionDemo/main.m --------------------------------------------------------------------------------