├── HMDiallingCode ├── DiallingCodes.plist ├── HMDiallingCode.h └── HMDiallingCode.m ├── HMDiallingCodeExample ├── HMDiallingCodeExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Hesham.xcuserdatad │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── Hesham.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── HMDiallingCodeExample.xcscheme │ │ └── xcschememanagement.plist └── HMDiallingCodeExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── HMDiallingCodeExample-Info.plist │ ├── HMDiallingCodeExample-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m └── README.md /HMDiallingCode/DiallingCodes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCode/DiallingCodes.plist -------------------------------------------------------------------------------- /HMDiallingCode/HMDiallingCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCode/HMDiallingCode.h -------------------------------------------------------------------------------- /HMDiallingCode/HMDiallingCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCode/HMDiallingCode.m -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/project.xcworkspace/xcuserdata/Hesham.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/project.xcworkspace/xcuserdata/Hesham.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/xcuserdata/Hesham.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/xcuserdata/Hesham.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/xcuserdata/Hesham.xcuserdatad/xcschemes/HMDiallingCodeExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/xcuserdata/Hesham.xcuserdatad/xcschemes/HMDiallingCodeExample.xcscheme -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/xcuserdata/Hesham.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample.xcodeproj/xcuserdata/Hesham.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/AppDelegate.h -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/AppDelegate.m -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/Default-568h@2x.png -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/Default.png -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/Default@2x.png -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/HMDiallingCodeExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/HMDiallingCodeExample-Info.plist -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/HMDiallingCodeExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/HMDiallingCodeExample-Prefix.pch -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/ViewController.h -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/ViewController.m -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /HMDiallingCodeExample/HMDiallingCodeExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/HMDiallingCodeExample/HMDiallingCodeExample/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeshamMegid/HMDiallingCode/HEAD/README.md --------------------------------------------------------------------------------