├── .gitignore ├── Framework ├── Weixin │ ├── WXApi.h │ ├── WXApiObject.h │ └── libWeChatSDK.a └── iflyMSC.framework │ ├── Headers │ ├── IFlyContact.h │ ├── IFlyDataDownloader.h │ ├── IFlyDataUploader.h │ ├── IFlyRecognizerView.h │ ├── IFlyRecognizerViewDelegate.h │ ├── IFlySetting.h │ ├── IFlySpeechConstant.h │ ├── IFlySpeechError.h │ ├── IFlySpeechRecognizer.h │ ├── IFlySpeechRecognizerDelegate.h │ ├── IFlySpeechSynthesizer.h │ ├── IFlySpeechSynthesizerDelegate.h │ ├── IFlySpeechUnderstander.h │ ├── IFlySpeechUtility.h │ ├── IFlyTextUnderstander.h │ └── IFlyUserWords.h │ └── iflyMSC ├── Podfile ├── README.md ├── ScreenShot ├── alipay_qr.jpg ├── home1_40.png ├── home2_40.png ├── share_40.png └── voice_40.png ├── VNNoteManager ├── Info.plist └── VNNoteManager.h ├── VNNoteManagerTests ├── Info.plist └── VNNoteManagerTests.m ├── Voice2Note.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── liaojinxing.xcuserdatad │ └── xcschemes │ ├── Voice2Note.xcscheme │ └── xcschememanagement.plist ├── Voice2Note.xcworkspace └── contents.xcworkspacedata ├── Voice2Note ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── logo_120.png │ │ ├── logo_58.png │ │ └── logo_80.png │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── spalash.png │ │ └── spalash_960.png ├── Resource │ ├── Localizable.strings │ ├── ic_add_tab@2x.png │ ├── ic_more_white@2x.png │ ├── logo │ │ ├── logo.png │ │ ├── logo_120.png │ │ ├── logo_58.png │ │ ├── logo_80.png │ │ ├── spalash.png │ │ └── spalash_960.png │ ├── micro_small@2x.png │ └── save@2x.png ├── Source │ ├── AppContext.h │ ├── AppContext.m │ ├── Common │ │ ├── NSDate+Conversion.h │ │ ├── NSDate+Conversion.m │ │ ├── UIColor+VNHex.h │ │ ├── UIColor+VNHex.m │ │ ├── VNConstants.h │ │ └── VNConstants.m │ ├── Controller │ │ ├── NoteDetailController.h │ │ ├── NoteDetailController.m │ │ ├── NoteListCell.h │ │ ├── NoteListCell.m │ │ ├── NoteListController.h │ │ └── NoteListController.m │ ├── LaunchScreen.xib │ ├── Library │ │ └── Umeng │ │ │ ├── MobClick.h │ │ │ ├── MobClickSocialAnalytics.h │ │ │ └── libMobClickLibrary.a │ └── Model │ │ ├── NoteManager.h │ │ ├── NoteManager.m │ │ ├── VNNote.h │ │ └── VNNote.m ├── Voice2Note-Info.plist ├── Voice2Note-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m └── Voice2NoteTests ├── Voice2NoteTests-Info.plist ├── Voice2NoteTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/.gitignore -------------------------------------------------------------------------------- /Framework/Weixin/WXApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/Weixin/WXApi.h -------------------------------------------------------------------------------- /Framework/Weixin/WXApiObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/Weixin/WXApiObject.h -------------------------------------------------------------------------------- /Framework/Weixin/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/Weixin/libWeChatSDK.a -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlyContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlyContact.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlyDataDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlyDataDownloader.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlyDataUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlyDataUploader.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlyRecognizerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlyRecognizerView.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlyRecognizerViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlyRecognizerViewDelegate.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySetting.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySpeechConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySpeechConstant.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySpeechError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySpeechError.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySpeechRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySpeechRecognizer.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySpeechRecognizerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySpeechRecognizerDelegate.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySpeechSynthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySpeechSynthesizer.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySpeechSynthesizerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySpeechSynthesizerDelegate.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySpeechUnderstander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySpeechUnderstander.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlySpeechUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlySpeechUtility.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlyTextUnderstander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlyTextUnderstander.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/Headers/IFlyUserWords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/Headers/IFlyUserWords.h -------------------------------------------------------------------------------- /Framework/iflyMSC.framework/iflyMSC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Framework/iflyMSC.framework/iflyMSC -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot/alipay_qr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/ScreenShot/alipay_qr.jpg -------------------------------------------------------------------------------- /ScreenShot/home1_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/ScreenShot/home1_40.png -------------------------------------------------------------------------------- /ScreenShot/home2_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/ScreenShot/home2_40.png -------------------------------------------------------------------------------- /ScreenShot/share_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/ScreenShot/share_40.png -------------------------------------------------------------------------------- /ScreenShot/voice_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/ScreenShot/voice_40.png -------------------------------------------------------------------------------- /VNNoteManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/VNNoteManager/Info.plist -------------------------------------------------------------------------------- /VNNoteManager/VNNoteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/VNNoteManager/VNNoteManager.h -------------------------------------------------------------------------------- /VNNoteManagerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/VNNoteManagerTests/Info.plist -------------------------------------------------------------------------------- /VNNoteManagerTests/VNNoteManagerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/VNNoteManagerTests/VNNoteManagerTests.m -------------------------------------------------------------------------------- /Voice2Note.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Voice2Note.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Voice2Note.xcodeproj/xcuserdata/liaojinxing.xcuserdatad/xcschemes/Voice2Note.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note.xcodeproj/xcuserdata/liaojinxing.xcuserdatad/xcschemes/Voice2Note.xcscheme -------------------------------------------------------------------------------- /Voice2Note.xcodeproj/xcuserdata/liaojinxing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note.xcodeproj/xcuserdata/liaojinxing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Voice2Note.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Voice2Note/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/AppDelegate.h -------------------------------------------------------------------------------- /Voice2Note/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/AppDelegate.m -------------------------------------------------------------------------------- /Voice2Note/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Voice2Note/Images.xcassets/AppIcon.appiconset/logo_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Images.xcassets/AppIcon.appiconset/logo_120.png -------------------------------------------------------------------------------- /Voice2Note/Images.xcassets/AppIcon.appiconset/logo_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Images.xcassets/AppIcon.appiconset/logo_58.png -------------------------------------------------------------------------------- /Voice2Note/Images.xcassets/AppIcon.appiconset/logo_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Images.xcassets/AppIcon.appiconset/logo_80.png -------------------------------------------------------------------------------- /Voice2Note/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Voice2Note/Images.xcassets/LaunchImage.launchimage/spalash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Images.xcassets/LaunchImage.launchimage/spalash.png -------------------------------------------------------------------------------- /Voice2Note/Images.xcassets/LaunchImage.launchimage/spalash_960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Images.xcassets/LaunchImage.launchimage/spalash_960.png -------------------------------------------------------------------------------- /Voice2Note/Resource/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/Localizable.strings -------------------------------------------------------------------------------- /Voice2Note/Resource/ic_add_tab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/ic_add_tab@2x.png -------------------------------------------------------------------------------- /Voice2Note/Resource/ic_more_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/ic_more_white@2x.png -------------------------------------------------------------------------------- /Voice2Note/Resource/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/logo/logo.png -------------------------------------------------------------------------------- /Voice2Note/Resource/logo/logo_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/logo/logo_120.png -------------------------------------------------------------------------------- /Voice2Note/Resource/logo/logo_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/logo/logo_58.png -------------------------------------------------------------------------------- /Voice2Note/Resource/logo/logo_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/logo/logo_80.png -------------------------------------------------------------------------------- /Voice2Note/Resource/logo/spalash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/logo/spalash.png -------------------------------------------------------------------------------- /Voice2Note/Resource/logo/spalash_960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/logo/spalash_960.png -------------------------------------------------------------------------------- /Voice2Note/Resource/micro_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/micro_small@2x.png -------------------------------------------------------------------------------- /Voice2Note/Resource/save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Resource/save@2x.png -------------------------------------------------------------------------------- /Voice2Note/Source/AppContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/AppContext.h -------------------------------------------------------------------------------- /Voice2Note/Source/AppContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/AppContext.m -------------------------------------------------------------------------------- /Voice2Note/Source/Common/NSDate+Conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Common/NSDate+Conversion.h -------------------------------------------------------------------------------- /Voice2Note/Source/Common/NSDate+Conversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Common/NSDate+Conversion.m -------------------------------------------------------------------------------- /Voice2Note/Source/Common/UIColor+VNHex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Common/UIColor+VNHex.h -------------------------------------------------------------------------------- /Voice2Note/Source/Common/UIColor+VNHex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Common/UIColor+VNHex.m -------------------------------------------------------------------------------- /Voice2Note/Source/Common/VNConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Common/VNConstants.h -------------------------------------------------------------------------------- /Voice2Note/Source/Common/VNConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Common/VNConstants.m -------------------------------------------------------------------------------- /Voice2Note/Source/Controller/NoteDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Controller/NoteDetailController.h -------------------------------------------------------------------------------- /Voice2Note/Source/Controller/NoteDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Controller/NoteDetailController.m -------------------------------------------------------------------------------- /Voice2Note/Source/Controller/NoteListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Controller/NoteListCell.h -------------------------------------------------------------------------------- /Voice2Note/Source/Controller/NoteListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Controller/NoteListCell.m -------------------------------------------------------------------------------- /Voice2Note/Source/Controller/NoteListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Controller/NoteListController.h -------------------------------------------------------------------------------- /Voice2Note/Source/Controller/NoteListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Controller/NoteListController.m -------------------------------------------------------------------------------- /Voice2Note/Source/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/LaunchScreen.xib -------------------------------------------------------------------------------- /Voice2Note/Source/Library/Umeng/MobClick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Library/Umeng/MobClick.h -------------------------------------------------------------------------------- /Voice2Note/Source/Library/Umeng/MobClickSocialAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Library/Umeng/MobClickSocialAnalytics.h -------------------------------------------------------------------------------- /Voice2Note/Source/Library/Umeng/libMobClickLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Library/Umeng/libMobClickLibrary.a -------------------------------------------------------------------------------- /Voice2Note/Source/Model/NoteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Model/NoteManager.h -------------------------------------------------------------------------------- /Voice2Note/Source/Model/NoteManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Model/NoteManager.m -------------------------------------------------------------------------------- /Voice2Note/Source/Model/VNNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Model/VNNote.h -------------------------------------------------------------------------------- /Voice2Note/Source/Model/VNNote.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Source/Model/VNNote.m -------------------------------------------------------------------------------- /Voice2Note/Voice2Note-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Voice2Note-Info.plist -------------------------------------------------------------------------------- /Voice2Note/Voice2Note-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/Voice2Note-Prefix.pch -------------------------------------------------------------------------------- /Voice2Note/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Voice2Note/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2Note/main.m -------------------------------------------------------------------------------- /Voice2NoteTests/Voice2NoteTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2NoteTests/Voice2NoteTests-Info.plist -------------------------------------------------------------------------------- /Voice2NoteTests/Voice2NoteTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liaojinxing/Voice2Note/HEAD/Voice2NoteTests/Voice2NoteTests.m -------------------------------------------------------------------------------- /Voice2NoteTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------