├── .gitignore ├── LICENSE ├── README.md ├── WhoCall.xcworkspace └── contents.xcworkspacedata ├── WhoCall ├── Image │ ├── AppImages.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-120.png │ │ │ ├── AppIcon-80.png │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── LaunchImage-iPhone4.png │ │ │ └── LaunchImage-iPhone5.png │ ├── icon_contact.png │ ├── icon_contact@2x.png │ ├── icon_location.png │ ├── icon_location@2x.png │ ├── icon_nobody.png │ ├── icon_nobody@2x.png │ ├── icon_spam.png │ └── icon_spam@2x.png ├── Src │ ├── 3rd │ │ ├── FMDB │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabase.m │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabaseAdditions.m │ │ │ ├── FMDatabasePool.h │ │ │ ├── FMDatabasePool.m │ │ │ ├── FMDatabaseQueue.h │ │ │ ├── FMDatabaseQueue.m │ │ │ ├── FMResultSet.h │ │ │ └── FMResultSet.m │ │ ├── MKAdditions │ │ │ ├── MKBlockAdditions.h │ │ │ ├── UIAlertView+MKBlockAdditions.h │ │ │ └── UIAlertView+MKBlockAdditions.m │ │ └── MMPDeepSleepPreventer │ │ │ ├── MMPDeepSleepPreventer.h │ │ │ ├── MMPDeepSleepPreventer.m │ │ │ └── MMPSilence.wav │ ├── Controllers │ │ ├── WCHangupViewController.h │ │ ├── WCHangupViewController.m │ │ ├── WCOtherAppsViewController.h │ │ ├── WCOtherAppsViewController.m │ │ ├── WCSetting.storyboard │ │ ├── WCSettingViewController.h │ │ └── WCSettingViewController.m │ ├── Telephony │ │ ├── WCAddressBook.h │ │ ├── WCAddressBook.m │ │ ├── WCCall.h │ │ ├── WCCall.m │ │ ├── WCCallCenter.h │ │ ├── WCCallCenter.m │ │ ├── WCCallInspector.h │ │ ├── WCCallInspector.m │ │ ├── WCLiarPhoneList.h │ │ ├── WCLiarPhoneList.m │ │ ├── WCPhoneLocator.h │ │ └── WCPhoneLocator.m │ ├── WCAppDelegate.h │ ├── WCAppDelegate.m │ ├── WCUtil.h │ ├── WCUtil.m │ ├── WhoCall-Prefix.pch │ └── main.m ├── Support │ ├── Localizable.strings │ ├── WhoCall-Info.plist │ ├── telocation.db │ └── zh-Hans.lproj │ │ └── InfoPlist.strings └── WhoCall.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ └── WhoCall.xcscheme └── _images ├── AppIcon-60.png └── screenshot-1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/README.md -------------------------------------------------------------------------------- /WhoCall.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WhoCall/Image/AppImages.xcassets/AppIcon.appiconset/AppIcon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/AppImages.xcassets/AppIcon.appiconset/AppIcon-120.png -------------------------------------------------------------------------------- /WhoCall/Image/AppImages.xcassets/AppIcon.appiconset/AppIcon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/AppImages.xcassets/AppIcon.appiconset/AppIcon-80.png -------------------------------------------------------------------------------- /WhoCall/Image/AppImages.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/AppImages.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WhoCall/Image/AppImages.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/AppImages.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /WhoCall/Image/AppImages.xcassets/LaunchImage.launchimage/LaunchImage-iPhone4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/AppImages.xcassets/LaunchImage.launchimage/LaunchImage-iPhone4.png -------------------------------------------------------------------------------- /WhoCall/Image/AppImages.xcassets/LaunchImage.launchimage/LaunchImage-iPhone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/AppImages.xcassets/LaunchImage.launchimage/LaunchImage-iPhone5.png -------------------------------------------------------------------------------- /WhoCall/Image/icon_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/icon_contact.png -------------------------------------------------------------------------------- /WhoCall/Image/icon_contact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/icon_contact@2x.png -------------------------------------------------------------------------------- /WhoCall/Image/icon_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/icon_location.png -------------------------------------------------------------------------------- /WhoCall/Image/icon_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/icon_location@2x.png -------------------------------------------------------------------------------- /WhoCall/Image/icon_nobody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/icon_nobody.png -------------------------------------------------------------------------------- /WhoCall/Image/icon_nobody@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/icon_nobody@2x.png -------------------------------------------------------------------------------- /WhoCall/Image/icon_spam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/icon_spam.png -------------------------------------------------------------------------------- /WhoCall/Image/icon_spam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Image/icon_spam@2x.png -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMDatabase.h -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMDatabase.m -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMDatabasePool.h -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMDatabasePool.m -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMDatabaseQueue.h -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMDatabaseQueue.m -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMResultSet.h -------------------------------------------------------------------------------- /WhoCall/Src/3rd/FMDB/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/FMDB/FMResultSet.m -------------------------------------------------------------------------------- /WhoCall/Src/3rd/MKAdditions/MKBlockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/MKAdditions/MKBlockAdditions.h -------------------------------------------------------------------------------- /WhoCall/Src/3rd/MKAdditions/UIAlertView+MKBlockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/MKAdditions/UIAlertView+MKBlockAdditions.h -------------------------------------------------------------------------------- /WhoCall/Src/3rd/MKAdditions/UIAlertView+MKBlockAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/MKAdditions/UIAlertView+MKBlockAdditions.m -------------------------------------------------------------------------------- /WhoCall/Src/3rd/MMPDeepSleepPreventer/MMPDeepSleepPreventer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/MMPDeepSleepPreventer/MMPDeepSleepPreventer.h -------------------------------------------------------------------------------- /WhoCall/Src/3rd/MMPDeepSleepPreventer/MMPDeepSleepPreventer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/MMPDeepSleepPreventer/MMPDeepSleepPreventer.m -------------------------------------------------------------------------------- /WhoCall/Src/3rd/MMPDeepSleepPreventer/MMPSilence.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/3rd/MMPDeepSleepPreventer/MMPSilence.wav -------------------------------------------------------------------------------- /WhoCall/Src/Controllers/WCHangupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Controllers/WCHangupViewController.h -------------------------------------------------------------------------------- /WhoCall/Src/Controllers/WCHangupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Controllers/WCHangupViewController.m -------------------------------------------------------------------------------- /WhoCall/Src/Controllers/WCOtherAppsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Controllers/WCOtherAppsViewController.h -------------------------------------------------------------------------------- /WhoCall/Src/Controllers/WCOtherAppsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Controllers/WCOtherAppsViewController.m -------------------------------------------------------------------------------- /WhoCall/Src/Controllers/WCSetting.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Controllers/WCSetting.storyboard -------------------------------------------------------------------------------- /WhoCall/Src/Controllers/WCSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Controllers/WCSettingViewController.h -------------------------------------------------------------------------------- /WhoCall/Src/Controllers/WCSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Controllers/WCSettingViewController.m -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCAddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCAddressBook.h -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCAddressBook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCAddressBook.m -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCCall.h -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCCall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCCall.m -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCCallCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCCallCenter.h -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCCallCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCCallCenter.m -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCCallInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCCallInspector.h -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCCallInspector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCCallInspector.m -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCLiarPhoneList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCLiarPhoneList.h -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCLiarPhoneList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCLiarPhoneList.m -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCPhoneLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCPhoneLocator.h -------------------------------------------------------------------------------- /WhoCall/Src/Telephony/WCPhoneLocator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/Telephony/WCPhoneLocator.m -------------------------------------------------------------------------------- /WhoCall/Src/WCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/WCAppDelegate.h -------------------------------------------------------------------------------- /WhoCall/Src/WCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/WCAppDelegate.m -------------------------------------------------------------------------------- /WhoCall/Src/WCUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/WCUtil.h -------------------------------------------------------------------------------- /WhoCall/Src/WCUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/WCUtil.m -------------------------------------------------------------------------------- /WhoCall/Src/WhoCall-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/WhoCall-Prefix.pch -------------------------------------------------------------------------------- /WhoCall/Src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Src/main.m -------------------------------------------------------------------------------- /WhoCall/Support/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Support/Localizable.strings -------------------------------------------------------------------------------- /WhoCall/Support/WhoCall-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Support/WhoCall-Info.plist -------------------------------------------------------------------------------- /WhoCall/Support/telocation.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/Support/telocation.db -------------------------------------------------------------------------------- /WhoCall/Support/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | "CFBundleDisplayName" = "谁CALL我"; -------------------------------------------------------------------------------- /WhoCall/WhoCall.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/WhoCall.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WhoCall/WhoCall.xcodeproj/xcshareddata/xcschemes/WhoCall.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/WhoCall/WhoCall.xcodeproj/xcshareddata/xcschemes/WhoCall.xcscheme -------------------------------------------------------------------------------- /_images/AppIcon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/_images/AppIcon-60.png -------------------------------------------------------------------------------- /_images/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quotation/WhoCall/HEAD/_images/screenshot-1.png --------------------------------------------------------------------------------