├── README.md ├── VKMsgSend ├── VKMsgSend.h └── VKMsgSend.m ├── VKMsgSend_Proj.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── Awhisper.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Awhisper.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── VKMsgSend_Proj.xcscheme │ └── xcschememanagement.plist ├── VKMsgSend_Proj ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── main.m ├── testClassA.h └── testClassA.m ├── VKMsgSend_ProjTests ├── Info.plist └── VKMsgSend_ProjTests.m └── VKMsgSend_ProjUITests ├── Info.plist └── VKMsgSend_ProjUITests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/README.md -------------------------------------------------------------------------------- /VKMsgSend/VKMsgSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend/VKMsgSend.h -------------------------------------------------------------------------------- /VKMsgSend/VKMsgSend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend/VKMsgSend.m -------------------------------------------------------------------------------- /VKMsgSend_Proj.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VKMsgSend_Proj.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VKMsgSend_Proj.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VKMsgSend_Proj.xcodeproj/project.xcworkspace/xcuserdata/Awhisper.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj.xcodeproj/project.xcworkspace/xcuserdata/Awhisper.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VKMsgSend_Proj.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /VKMsgSend_Proj.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcschemes/VKMsgSend_Proj.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcschemes/VKMsgSend_Proj.xcscheme -------------------------------------------------------------------------------- /VKMsgSend_Proj.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj.xcodeproj/xcuserdata/Awhisper.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VKMsgSend_Proj/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/AppDelegate.h -------------------------------------------------------------------------------- /VKMsgSend_Proj/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/AppDelegate.m -------------------------------------------------------------------------------- /VKMsgSend_Proj/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VKMsgSend_Proj/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VKMsgSend_Proj/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VKMsgSend_Proj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/Info.plist -------------------------------------------------------------------------------- /VKMsgSend_Proj/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/ViewController.h -------------------------------------------------------------------------------- /VKMsgSend_Proj/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/ViewController.m -------------------------------------------------------------------------------- /VKMsgSend_Proj/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/main.m -------------------------------------------------------------------------------- /VKMsgSend_Proj/testClassA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/testClassA.h -------------------------------------------------------------------------------- /VKMsgSend_Proj/testClassA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_Proj/testClassA.m -------------------------------------------------------------------------------- /VKMsgSend_ProjTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_ProjTests/Info.plist -------------------------------------------------------------------------------- /VKMsgSend_ProjTests/VKMsgSend_ProjTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_ProjTests/VKMsgSend_ProjTests.m -------------------------------------------------------------------------------- /VKMsgSend_ProjUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_ProjUITests/Info.plist -------------------------------------------------------------------------------- /VKMsgSend_ProjUITests/VKMsgSend_ProjUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Awhisper/VKMsgSend/HEAD/VKMsgSend_ProjUITests/VKMsgSend_ProjUITests.m --------------------------------------------------------------------------------