├── CRCallDirectoryDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── crmo.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── crmo.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── CRCallDirectoryDemo ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CRCallDirectoryDemo.entitlements ├── CRCallDirectoryManager │ ├── CRCallDirectoryManager.h │ └── CRCallDirectoryManager.m ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── CRCallDirectoryDemoTests ├── CRCallDirectoryDemoTests.m └── Info.plist ├── CRCallDirectoryDemoUITests ├── CRCallDirectoryDemoUITests.m └── Info.plist ├── CallDirectory ├── CallDirectory.entitlements ├── CallDirectoryHandler.h ├── CallDirectoryHandler.m └── Info.plist ├── LICENSE ├── README.md └── picture ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png /CRCallDirectoryDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CRCallDirectoryDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CRCallDirectoryDemo.xcodeproj/project.xcworkspace/xcuserdata/crmo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo.xcodeproj/project.xcworkspace/xcuserdata/crmo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CRCallDirectoryDemo.xcodeproj/xcuserdata/crmo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo.xcodeproj/xcuserdata/crmo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CRCallDirectoryDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/.DS_Store -------------------------------------------------------------------------------- /CRCallDirectoryDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/AppDelegate.h -------------------------------------------------------------------------------- /CRCallDirectoryDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/AppDelegate.m -------------------------------------------------------------------------------- /CRCallDirectoryDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CRCallDirectoryDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CRCallDirectoryDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CRCallDirectoryDemo/CRCallDirectoryDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/CRCallDirectoryDemo.entitlements -------------------------------------------------------------------------------- /CRCallDirectoryDemo/CRCallDirectoryManager/CRCallDirectoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/CRCallDirectoryManager/CRCallDirectoryManager.h -------------------------------------------------------------------------------- /CRCallDirectoryDemo/CRCallDirectoryManager/CRCallDirectoryManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/CRCallDirectoryManager/CRCallDirectoryManager.m -------------------------------------------------------------------------------- /CRCallDirectoryDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/Info.plist -------------------------------------------------------------------------------- /CRCallDirectoryDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/ViewController.h -------------------------------------------------------------------------------- /CRCallDirectoryDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/ViewController.m -------------------------------------------------------------------------------- /CRCallDirectoryDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemo/main.m -------------------------------------------------------------------------------- /CRCallDirectoryDemoTests/CRCallDirectoryDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemoTests/CRCallDirectoryDemoTests.m -------------------------------------------------------------------------------- /CRCallDirectoryDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemoTests/Info.plist -------------------------------------------------------------------------------- /CRCallDirectoryDemoUITests/CRCallDirectoryDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemoUITests/CRCallDirectoryDemoUITests.m -------------------------------------------------------------------------------- /CRCallDirectoryDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CRCallDirectoryDemoUITests/Info.plist -------------------------------------------------------------------------------- /CallDirectory/CallDirectory.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CallDirectory/CallDirectory.entitlements -------------------------------------------------------------------------------- /CallDirectory/CallDirectoryHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CallDirectory/CallDirectoryHandler.h -------------------------------------------------------------------------------- /CallDirectory/CallDirectoryHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CallDirectory/CallDirectoryHandler.m -------------------------------------------------------------------------------- /CallDirectory/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/CallDirectory/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/README.md -------------------------------------------------------------------------------- /picture/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/picture/1.png -------------------------------------------------------------------------------- /picture/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/picture/2.png -------------------------------------------------------------------------------- /picture/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/picture/3.png -------------------------------------------------------------------------------- /picture/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/picture/4.png -------------------------------------------------------------------------------- /picture/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crmo/CRCallDirectoryDemo/HEAD/picture/5.png --------------------------------------------------------------------------------