├── .gitignore ├── .gitmodules ├── AAKeyboardApp.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── AAKeyboardApp.xcscheme │ ├── keyboard - Disabled App Groups.xcscheme │ ├── keyboard.xcscheme │ └── register.xcscheme ├── AAKeyboardApp ├── AAKAACloudCollectionViewCell.h ├── AAKAACloudCollectionViewCell.m ├── AAKAACloudCollectionViewCell.xib ├── AAKAACollectionViewCell.h ├── AAKAACollectionViewCell.m ├── AAKAACollectionViewCell.xib ├── AAKAACollectionViewController.h ├── AAKAACollectionViewController.m ├── AAKAAEditAnimatedTransitioning.h ├── AAKAAEditAnimatedTransitioning.m ├── AAKAAEditPresentationController.h ├── AAKAAEditPresentationController.m ├── AAKAAGroupForCollection.h ├── AAKAAGroupForCollection.m ├── AAKAASupplementaryView.h ├── AAKAASupplementaryView.m ├── AAKAASupplementaryView.xib ├── AAKCloudAAPreviewController.h ├── AAKCloudAAPreviewController.m ├── AAKCloudAARankingViewController.h ├── AAKCloudAARankingViewController.m ├── AAKCloudAASearchViewController.h ├── AAKCloudAASearchViewController.m ├── AAKCloudAAViewController.h ├── AAKCloudAAViewController.m ├── AAKCloudRecentAAViewController.h ├── AAKCloudRecentAAViewController.m ├── AAKCloudSendReportViewController.h ├── AAKCloudSendReportViewController.m ├── AAKDummyCollectionReusableView.h ├── AAKDummyCollectionReusableView.m ├── AAKHelpDummyTapView.h ├── AAKHelpDummyTapView.m ├── AAKHelpSelectViewController.h ├── AAKHelpSelectViewController.m ├── AAKHelpViewController.h ├── AAKHelpViewController.m ├── AAKPreviewController.h ├── AAKPreviewController.m ├── AAKSettingViewController.h ├── AAKSettingViewController.m ├── AAKeyboardApp.entitlements ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Info.plist ├── UINavigationController+Rotate.h ├── UINavigationController+Rotate.m ├── UIViewController+Rotate.h ├── UIViewController+Rotate.m ├── ja.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ └── Main.strings └── main.m ├── AAKeyboardAppTests ├── AAKeyboardAppTests.m └── Info.plist ├── LICENSE.md ├── README.md ├── iTunesConnect ├── en │ ├── readme.txt │ └── version.txt ├── icon │ ├── icon1024x1024.jpg │ └── icon512x512.jpg ├── ja │ ├── readme.txt │ └── version.txt └── screenshot │ ├── 3.5-Inch Retina Display Screenshots │ ├── 001.jpg │ ├── 002.jpg │ ├── 003.jpg │ ├── 004.jpg │ └── 005.jpg │ ├── 4-Inch Retina Display Screenshots │ ├── 001.jpg │ ├── 002.jpg │ ├── 003.jpg │ ├── 004.jpg │ └── 005.jpg │ ├── 4.7-Inch Retina Display Screenshots │ ├── 001.jpg │ ├── 002.jpg │ ├── 003.jpg │ ├── 004.jpg │ └── 005.jpg │ ├── 5.5-Inch Retina Display Screenshots │ ├── 001.jpg │ ├── 002.jpg │ ├── 003.jpg │ ├── 004.jpg │ └── 005.jpg │ └── iPad Screenshots │ ├── 001.jpg │ ├── 002.jpg │ ├── 003.jpg │ ├── 004.jpg │ └── 005.jpg ├── keyboard ├── AAK10KeyView.h ├── AAK10KeyView.m ├── AAK10KeyView.xib ├── AAKASCIIArtDummyHistoryGroup.h ├── AAKASCIIArtDummyHistoryGroup.m ├── AAKContentCell.h ├── AAKContentCell.m ├── AAKKeyboardView.h ├── AAKKeyboardView.m ├── AAKNotifyView.h ├── AAKNotifyView.m ├── AAKToolbar.h ├── AAKToolbar.m ├── AAKToolbarCell.h ├── AAKToolbarCell.m ├── AAKToolbarFooterView.h ├── AAKToolbarFooterView.m ├── AAKToolbarFooterView.xib ├── AAKToolbarHeaderView.h ├── AAKToolbarHeaderView.m ├── AAKToolbarHeaderView.xib ├── AAKToolbarHistoryCell.h ├── AAKToolbarHistoryCell.m ├── Base.lproj │ └── InfoPlist.strings ├── Info.plist ├── KeyboardViewController.h ├── KeyboardViewController.m ├── UIColor+keyboard.h ├── UIColor+keyboard.m ├── UIImage+keyboard.h ├── UIImage+keyboard.m ├── ja.lproj │ └── InfoPlist.strings └── keyboard.entitlements ├── register ├── AAKRegisterActionViewController.h ├── AAKRegisterActionViewController.m ├── Base.lproj │ ├── InfoPlist.strings │ └── MainInterface.storyboard ├── Info.plist ├── extension_js.js ├── ja.lproj │ ├── InfoPlist.strings │ └── MainInterface.strings └── register.entitlements ├── resources ├── Images.xcassets │ ├── AABackView.imageset │ │ ├── AABackView.png │ │ ├── AABackView@2x.png │ │ ├── AABackView@3x.png │ │ └── Contents.json │ ├── AASectionBackView.imageset │ │ ├── AASectionBackView.png │ │ ├── AASectionBackView@2x.png │ │ ├── AASectionBackView@3x.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-29.png │ │ ├── Icon-29@2x-1.png │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x.png │ │ ├── Icon-40.png │ │ ├── Icon-40@2x-1.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ └── Icon-76@2x.png │ ├── CloseButton.imageset │ │ ├── CloseButton.png │ │ ├── CloseButton@2x.png │ │ ├── CloseButton@3x.png │ │ └── Contents.json │ ├── Icon-29.imageset │ │ ├── Contents.json │ │ ├── Icon-29.png │ │ ├── Icon-29@2x.png │ │ └── Icon-29@3x.png │ ├── Icon-40.imageset │ │ ├── Contents.json │ │ ├── Icon-40.png │ │ ├── Icon-40@2x.png │ │ └── Icon-40@3x.png │ ├── Icon-60.imageset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ └── Icon-60@3x.png │ ├── Icon-76.imageset │ │ ├── Contents.json │ │ ├── Icon-76.png │ │ └── Icon-76@2x.png │ ├── action001.imageset │ │ ├── Contents.json │ │ └── action001.jpeg │ ├── action002.imageset │ │ ├── Contents.json │ │ └── action002.jpeg │ ├── action003.imageset │ │ ├── Contents.json │ │ └── action003.jpeg │ ├── action004.imageset │ │ ├── Contents.json │ │ └── action004.jpeg │ ├── action005.imageset │ │ ├── Contents.json │ │ └── action005.jpeg │ ├── action006.imageset │ │ ├── Contents.json │ │ └── action006.jpeg │ ├── action007.imageset │ │ ├── Contents.json │ │ └── action007.jpeg │ ├── action_ipad001.imageset │ │ ├── Contents.json │ │ └── action_ipad001.jpeg │ ├── action_ipad002.imageset │ │ ├── Contents.json │ │ └── action_ipad002.jpeg │ ├── action_ipad003.imageset │ │ ├── Contents.json │ │ └── action_ipad003.jpeg │ ├── action_ipad004.imageset │ │ ├── Contents.json │ │ └── action_ipad004.jpeg │ ├── action_ipad005.imageset │ │ ├── Contents.json │ │ └── action_ipad005.jpeg │ ├── action_ipad006.imageset │ │ ├── Contents.json │ │ └── action_ipad006.jpeg │ ├── action_ipad007.imageset │ │ ├── Contents.json │ │ └── action_ipad007.jpeg │ ├── app2tch001.imageset │ │ ├── Contents.json │ │ └── app2tch001.jpeg │ ├── app2tch002.imageset │ │ ├── Contents.json │ │ └── app2tch002.jpeg │ ├── app2tch003.imageset │ │ ├── Contents.json │ │ └── app2tch003.jpeg │ ├── app2tch004.imageset │ │ ├── Contents.json │ │ └── app2tch004.jpeg │ ├── app2tch_ipad001.imageset │ │ ├── Contents.json │ │ └── app2tch_ipad001.jpeg │ ├── app2tch_ipad002.imageset │ │ ├── Contents.json │ │ └── app2tch_ipad002.jpeg │ ├── app2tch_ipad003.imageset │ │ ├── Contents.json │ │ └── app2tch_ipad003.jpeg │ ├── app2tch_ipad004.imageset │ │ ├── Contents.json │ │ └── app2tch_ipad004.jpeg │ ├── cloud.imageset │ │ ├── Contents.json │ │ ├── cloud.png │ │ ├── cloud@2x.png │ │ └── cloud@3x.png │ ├── cloudDownload.imageset │ │ ├── Contents.json │ │ ├── cloudDownload.png │ │ ├── cloudDownload@2x.png │ │ └── cloudDownload@3x.png │ ├── cloudDownloadBlue.imageset │ │ ├── Contents.json │ │ ├── cloudDownloadBlue.png │ │ ├── cloudDownloadBlue@2x.png │ │ └── cloudDownloadBlue@3x.png │ ├── cloudUpload.imageset │ │ ├── Contents.json │ │ ├── cloudUpload.png │ │ ├── cloudUpload@2x.png │ │ └── cloudUpload@3x.png │ ├── cloudUploadBlue.imageset │ │ ├── Contents.json │ │ ├── cloudUploadBlue.png │ │ ├── cloudUploadBlue@2x.png │ │ └── cloudUploadBlue@3x.png │ ├── copy001.imageset │ │ ├── Contents.json │ │ └── copy001.jpeg │ ├── copy002.imageset │ │ ├── Contents.json │ │ └── copy002.jpeg │ ├── copy003.imageset │ │ ├── Contents.json │ │ └── copy003.jpeg │ ├── copy004.imageset │ │ ├── Contents.json │ │ └── copy004.jpeg │ ├── copy005.imageset │ │ ├── Contents.json │ │ └── copy005.jpeg │ ├── copy006.imageset │ │ ├── Contents.json │ │ └── copy006.jpeg │ ├── copyAsImage001.imageset │ │ ├── Contents.json │ │ └── copyAsImage001.jpeg │ ├── copyAsImage002.imageset │ │ ├── Contents.json │ │ └── copyAsImage002.jpeg │ ├── copyAsImage003.imageset │ │ ├── Contents.json │ │ └── copyAsImage003.jpeg │ ├── copyAsImage004.imageset │ │ ├── Contents.json │ │ └── copyAsImage004.jpeg │ ├── copyAsImage005.imageset │ │ ├── Contents.json │ │ └── copyAsImage005.jpeg │ ├── copyAsImage_ipad001.imageset │ │ ├── Contents.json │ │ └── copyAsImage_ipad001.jpeg │ ├── copyAsImage_ipad002.imageset │ │ ├── Contents.json │ │ └── copyAsImage_ipad002.jpeg │ ├── copyAsImage_ipad003.imageset │ │ ├── Contents.json │ │ └── copyAsImage_ipad003.jpeg │ ├── copyAsImage_ipad004.imageset │ │ ├── Contents.json │ │ └── copyAsImage_ipad004.jpeg │ ├── copyAsImage_ipad005.imageset │ │ ├── Contents.json │ │ └── copyAsImage_ipad005.jpeg │ ├── copy_ipad001.imageset │ │ ├── Contents.json │ │ └── copy_ipad001.jpeg │ ├── copy_ipad002.imageset │ │ ├── Contents.json │ │ └── copy_ipad002.jpeg │ ├── copy_ipad003.imageset │ │ ├── Contents.json │ │ └── copy_ipad003.jpeg │ ├── copy_ipad004.imageset │ │ ├── Contents.json │ │ └── copy_ipad004.jpeg │ ├── copy_ipad005.imageset │ │ ├── Contents.json │ │ └── copy_ipad005.jpeg │ ├── copy_ipad006.imageset │ │ ├── Contents.json │ │ └── copy_ipad006.jpeg │ ├── gear.imageset │ │ ├── Contents.json │ │ ├── gear.png │ │ ├── gear@2x.png │ │ └── gear@3x.png │ ├── help.imageset │ │ ├── Contents.json │ │ ├── help.png │ │ ├── help@2x.png │ │ └── help@3x.png │ ├── historyOnTab.imageset │ │ ├── Contents.json │ │ ├── historyOnTab.png │ │ ├── historyOnTab@2x.png │ │ └── historyOnTab@3x.png │ ├── iTunesArtwork.imageset │ │ ├── Contents.json │ │ └── iTunesArtwork@2x.png │ ├── iphone.imageset │ │ ├── Contents.json │ │ ├── iphone.png │ │ ├── iphone@2x.png │ │ └── iphone@3x.png │ ├── launchAppIcon.imageset │ │ ├── Contents.json │ │ ├── launchAppIcon.png │ │ ├── launchAppIcon@2x.png │ │ └── launchAppIcon@3x.png │ ├── like.imageset │ │ ├── Contents.json │ │ ├── like.png │ │ ├── like@2x.png │ │ └── like@3x.png │ ├── list.imageset │ │ ├── Contents.json │ │ ├── list.png │ │ ├── list@2x.png │ │ └── list@3x.png │ ├── miniLike.imageset │ │ ├── Contents.json │ │ ├── miniLike.png │ │ ├── miniLike@2x.png │ │ └── miniLike@3x.png │ ├── paste.imageset │ │ ├── Contents.json │ │ ├── paste.png │ │ ├── paste@2x.png │ │ └── paste@3x.png │ ├── pen.imageset │ │ ├── Contents.json │ │ ├── pen.png │ │ ├── pen@2x.png │ │ └── pen@3x.png │ ├── photoLibrary.imageset │ │ ├── Contents.json │ │ ├── photoLibrary.png │ │ ├── photoLibrary@2x.png │ │ └── photoLibrary@3x.png │ ├── plus.imageset │ │ ├── Contents.json │ │ ├── plus.png │ │ ├── plus@2x.png │ │ └── plus@3x.png │ ├── ranking.imageset │ │ ├── Contents.json │ │ ├── ranking.png │ │ ├── ranking@2x.png │ │ └── ranking@3x.png │ ├── report.imageset │ │ ├── Contents.json │ │ ├── report.png │ │ ├── report@2x.png │ │ └── report@3x.png │ ├── search.imageset │ │ ├── Contents.json │ │ ├── search.png │ │ ├── search@2x.png │ │ └── search@3x.png │ ├── setup001.imageset │ │ ├── Contents.json │ │ └── setup001.jpeg │ ├── setup002.imageset │ │ ├── Contents.json │ │ └── setup002.jpeg │ ├── setup003.imageset │ │ ├── Contents.json │ │ └── setup003.jpeg │ ├── setup004.imageset │ │ ├── Contents.json │ │ └── setup004.jpeg │ ├── setup005.imageset │ │ ├── Contents.json │ │ └── setup005.jpeg │ ├── setup006.imageset │ │ ├── Contents.json │ │ └── setup006.jpeg │ ├── setup007.imageset │ │ ├── Contents.json │ │ └── setup007.jpeg │ ├── setup008.imageset │ │ ├── Contents.json │ │ └── setup008.jpeg │ ├── setup009.imageset │ │ ├── Contents.json │ │ └── setup009.jpeg │ ├── setup_ipad001.imageset │ │ ├── Contents.json │ │ └── setup_ipad001.jpeg │ ├── setup_ipad002.imageset │ │ ├── Contents.json │ │ └── setup_ipad002.jpeg │ ├── setup_ipad003.imageset │ │ ├── Contents.json │ │ └── setup_ipad003.jpeg │ ├── setup_ipad004.imageset │ │ ├── Contents.json │ │ └── setup_ipad004.jpeg │ ├── setup_ipad005.imageset │ │ ├── Contents.json │ │ └── setup_ipad005.jpeg │ ├── setup_ipad006.imageset │ │ ├── Contents.json │ │ └── setup_ipad006.jpeg │ ├── setup_ipad007.imageset │ │ ├── Contents.json │ │ └── setup_ipad007.jpeg │ ├── setup_ipad008.imageset │ │ ├── Contents.json │ │ └── setup_ipad008.jpeg │ ├── setup_ipad009.imageset │ │ ├── Contents.json │ │ └── setup_ipad009.jpeg │ └── trash.imageset │ │ ├── Contents.json │ │ ├── trash.png │ │ ├── trash@2x.png │ │ └── trash@3x.png ├── default.json ├── keyboard.xcassets │ ├── asciiart.imageset │ │ ├── Contents.json │ │ ├── asciiart.png │ │ ├── asciiart@2x.png │ │ └── asciiart@3x.png │ ├── asciiartHD.imageset │ │ ├── Contents.json │ │ ├── asciiartHD.png │ │ ├── asciiartHD@2x.png │ │ └── asciiartHD@3x.png │ ├── darkLeftEdge.imageset │ │ ├── Contents.json │ │ ├── darkLeftEdge.png │ │ ├── darkLeftEdge@2x.png │ │ └── darkLeftEdge@3x.png │ ├── darkRightEdge.imageset │ │ ├── Contents.json │ │ ├── darkRightEdge.png │ │ ├── darkRightEdge@2x.png │ │ └── darkRightEdge@3x.png │ ├── darkTopEdge.imageset │ │ ├── Contents.json │ │ ├── darkTopEdge.png │ │ ├── darkTopEdge@2x.png │ │ └── darkTopEdge@3x.png │ ├── delete.imageset │ │ ├── Contents.json │ │ ├── delete.png │ │ ├── delete@2x.png │ │ └── delete@3x.png │ ├── deleteHD.imageset │ │ ├── Contents.json │ │ ├── deleteHD.png │ │ ├── deleteHD@2x.png │ │ └── deleteHD@3x.png │ ├── global.imageset │ │ ├── Contents.json │ │ ├── global.png │ │ ├── global@2x.png │ │ └── global@3x.png │ ├── globalHD.imageset │ │ ├── Contents.json │ │ ├── globalHD.png │ │ ├── globalHD@2x.png │ │ └── globalHD@3x.png │ ├── hasciiart.imageset │ │ ├── Contents.json │ │ ├── hasciiart.png │ │ ├── hasciiart@2x.png │ │ └── hasciiart@3x.png │ ├── hasciiartHD.imageset │ │ ├── Contents.json │ │ ├── hasciiartHD.png │ │ ├── hasciiartHD@2x.png │ │ └── hasciiartHD@3x.png │ ├── hdelete.imageset │ │ ├── Contents.json │ │ ├── hdelete.png │ │ ├── hdelete@2x.png │ │ └── hdelete@3x.png │ ├── hdeleteHD.imageset │ │ ├── Contents.json │ │ ├── hdeleteHD.png │ │ ├── hdeleteHD@2x.png │ │ └── hdeleteHD@3x.png │ ├── hglobal.imageset │ │ ├── Contents.json │ │ ├── hglobal.png │ │ ├── hglobal@2x.png │ │ └── hglobal@3x.png │ ├── hglobalHD.imageset │ │ ├── Contents.json │ │ ├── hglobalHD.png │ │ ├── hglobalHD@2x.png │ │ └── hglobalHD@3x.png │ ├── hhistory.imageset │ │ ├── Contents.json │ │ ├── hhistory.png │ │ ├── hhistory@2x.png │ │ └── hhistory@3x.png │ ├── hhistoryHD.imageset │ │ ├── Contents.json │ │ ├── hhistoryHD.png │ │ ├── hhistoryHD@2x.png │ │ └── hhistoryHD@3x.png │ ├── history.imageset │ │ ├── Contents.json │ │ ├── history.png │ │ ├── history@2x.png │ │ └── history@3x.png │ ├── historyHD.imageset │ │ ├── Contents.json │ │ ├── historyHD.png │ │ ├── historyHD@2x.png │ │ └── historyHD@3x.png │ ├── hnumberKey.imageset │ │ ├── Contents.json │ │ ├── hnumberKey.png │ │ ├── hnumberKey@2x.png │ │ └── hnumberKey@3x.png │ ├── hnumberKeyHD.imageset │ │ ├── Contents.json │ │ ├── hnumberKeyHD.png │ │ ├── hnumberKeyHD@2x.png │ │ └── hnumberKeyHD@3x.png │ ├── leftEdge.imageset │ │ ├── Contents.json │ │ ├── leftEdge.png │ │ ├── leftEdge@2x.png │ │ └── leftEdge@3x.png │ ├── numberKey.imageset │ │ ├── Contents.json │ │ ├── numberKey.png │ │ ├── numberKey@2x.png │ │ └── numberKey@3x.png │ ├── numberKeyHD.imageset │ │ ├── Contents.json │ │ ├── numberKeyHD.png │ │ ├── numberKeyHD@2x.png │ │ └── numberKeyHD@3x.png │ ├── rightEdge.imageset │ │ ├── Contents.json │ │ ├── rightEdge.png │ │ ├── rightEdge@2x.png │ │ └── rightEdge@3x.png │ └── topEdge.imageset │ │ ├── Contents.json │ │ ├── topEdge.png │ │ ├── topEdge@2x.png │ │ └── topEdge@3x.png ├── mona.ttf └── register.xcassets │ └── ExtensionIcon.appiconset │ ├── Contents.json │ ├── ExtensionIcon-60@2x.png │ ├── ExtensionIcon-60@3x.png │ ├── ExtensionIcon-76.png │ └── ExtensionIcon-76@2x.png ├── shared ├── AAKAAGroupForCollection.h ├── AAKAAGroupForCollection.m ├── AAKASCIIArt.h ├── AAKASCIIArt.m ├── AAKASCIIArtGroup.h ├── AAKASCIIArtGroup.m ├── AAKCloudASCIIArt.h ├── AAKCloudASCIIArt.m ├── AAKCoreDataStack.h ├── AAKCoreDataStack.m ├── AAKCreateNewGroupViewController.h ├── AAKCreateNewGroupViewController.m ├── AAKEditViewController.h ├── AAKEditViewController.m ├── AAKGroupRenameViewController.h ├── AAKGroupRenameViewController.m ├── AAKHelper.h ├── AAKRegisterViewController.h ├── AAKRegisterViewController.m ├── AAKSelectGroupViewController.h ├── AAKSelectGroupViewController.m ├── AAKShared.pch ├── AAKTextView.h ├── AAKTextView.m ├── AAKToolbarFooterView.h ├── AAKToolbarFooterView.m ├── AAKToolbarFooterView.xib ├── AAKToolbarHeaderView.h ├── AAKToolbarHeaderView.m ├── AAKToolbarHeaderView.xib ├── CKModifyRecordsOperation+AA.h ├── CKModifyRecordsOperation+AA.m ├── Model.xcdatamodeld │ └── Model.xcdatamodel │ │ └── contents ├── NSParagraphStyle+keyboard.h ├── NSParagraphStyle+keyboard.m ├── UIColor+keyboard.h ├── UIColor+keyboard.m ├── UIImage+keyboard.h ├── UIImage+keyboard.m ├── UINavigationController+Rotate.h ├── UINavigationController+Rotate.m ├── UITraitCollection+keyboard.h ├── UITraitCollection+keyboard.m ├── UIViewController+Rotate.h └── UIViewController+Rotate.m ├── sketch ├── application.sketch ├── extension.sketch ├── help.sketch └── keyboard.sketch └── vendor ├── MagicalRecord ├── Categories │ ├── DataImport │ │ ├── MagicalImportFunctions.h │ │ ├── MagicalImportFunctions.m │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ ├── NSAttributeDescription+MagicalDataImport.m │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ ├── NSEntityDescription+MagicalDataImport.m │ │ ├── NSNumber+MagicalDataImport.h │ │ ├── NSNumber+MagicalDataImport.m │ │ ├── NSObject+MagicalDataImport.h │ │ ├── NSObject+MagicalDataImport.m │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ ├── NSRelationshipDescription+MagicalDataImport.m │ │ ├── NSString+MagicalDataImport.h │ │ └── NSString+MagicalDataImport.m │ ├── NSManagedObject │ │ ├── NSManagedObject+MagicalAggregation.h │ │ ├── NSManagedObject+MagicalAggregation.m │ │ ├── NSManagedObject+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalDataImport.m │ │ ├── NSManagedObject+MagicalFinders.h │ │ ├── NSManagedObject+MagicalFinders.m │ │ ├── NSManagedObject+MagicalRecord.h │ │ ├── NSManagedObject+MagicalRecord.m │ │ ├── NSManagedObject+MagicalRequests.h │ │ └── NSManagedObject+MagicalRequests.m │ ├── NSManagedObjectContext │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ ├── NSManagedObjectContext+MagicalObserving.m │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ ├── NSManagedObjectContext+MagicalRecord.m │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ ├── NSManagedObjectContext+MagicalSaves.m │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ └── NSManagedObjectContext+MagicalThreading.m │ ├── NSManagedObjectModel+MagicalRecord.h │ ├── NSManagedObjectModel+MagicalRecord.m │ ├── NSPersistentStore+MagicalRecord.h │ ├── NSPersistentStore+MagicalRecord.m │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ └── NSPersistentStoreCoordinator+MagicalRecord.m ├── Core │ ├── MagicalRecord+Actions.h │ ├── MagicalRecord+Actions.m │ ├── MagicalRecord+ErrorHandling.h │ ├── MagicalRecord+ErrorHandling.m │ ├── MagicalRecord+Options.h │ ├── MagicalRecord+Options.m │ ├── MagicalRecord+Setup.h │ ├── MagicalRecord+Setup.m │ ├── MagicalRecord+ShorthandSupport.h │ ├── MagicalRecord+ShorthandSupport.m │ ├── MagicalRecord+iCloud.h │ ├── MagicalRecord+iCloud.m │ ├── MagicalRecord.h │ ├── MagicalRecord.m │ ├── MagicalRecordDeprecated.h │ ├── MagicalRecordLogging.h │ └── MagicalRecordShorthand.h └── CoreData+MagicalRecord.h └── UZTextView ├── UZCursorView.h ├── UZCursorView.m ├── UZLoupeView.h ├── UZLoupeView.m ├── UZTextView.h └── UZTextView.m /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | build/* 3 | *.pbxuser 4 | !default.pbxuser 5 | *.mode1v3 6 | !default.mode1v3 7 | *.mode2v3 8 | !default.mode2v3 9 | *.perspectivev3 10 | !default.perspectivev3 11 | *.xcworkspace 12 | !default.xcworkspace 13 | xcuserdata 14 | profile 15 | *.moved-aside 16 | .DS_Store 17 | *~ 18 | revision.plist 19 | .idea 20 | info.prefix -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "vendor/UIDeviceUtil"] 2 | path = vendor/UIDeviceUtil 3 | url = https://github.com/sonsongithub/UIDeviceUtil.git 4 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKAACloudCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAACloudCollectionViewCell.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/19. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AAKAACollectionViewCell.h" 12 | 13 | @class AAKCloudASCIIArt; 14 | 15 | @interface AAKAACloudCollectionViewCell : UICollectionViewCell 16 | 17 | @property (nonatomic, assign) IBOutlet AAKTextView *textView; /** アスキーアートをレンダリングするビュー */ 18 | @property (nonatomic, assign) IBOutlet UIView *textBackView; /** テキストの背景ビュー */ 19 | @property (nonatomic, assign) IBOutlet UILabel *titleLabel; /** 名前用ラベル */ 20 | @property (nonatomic, strong) AAKCloudASCIIArt *asciiart; /** 表示するアスキーアート */ 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKAACollectionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAACollectionViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/23. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class _AAKASCIIArt; 12 | 13 | @interface AAKAACollectionViewController : UICollectionViewController 14 | 15 | /** 16 | * 指定されたアスキーアートを含むセルを返す. 17 | * 見つからない場合は,nilを返す. 18 | * @param asciiart アスキーアートオブジェクト. 19 | * @return アスキーアートオブジェクトを保持するAAKAACollectionViewCellインスタンスを返す. 20 | **/ 21 | - (id)cellForAsciiArt:(AAKASCIIArt*)asciiart; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKAAEditPresentationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAAEditPresentationController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/29. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKAAEditPresentationController : UIPresentationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKAAEditPresentationController.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAAEditPresentationController.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/29. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKAAEditPresentationController.h" 10 | 11 | @implementation AAKAAEditPresentationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKAAGroupForCollection.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAAGroupForCollection.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/08. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class AAKASCIIArtGroup; 12 | @class AAKASCIIArt; 13 | 14 | @interface AAKAAGroupForCollection : NSObject 15 | 16 | @property (nonatomic, readonly) AAKASCIIArtGroup *group; 17 | @property (nonatomic, readonly) NSArray *asciiarts; 18 | 19 | + (instancetype)groupForCollectionWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKAAGroupForCollection.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAAGroupForCollection.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/08. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKAAGroupForCollection.h" 10 | 11 | @implementation AAKAAGroupForCollection 12 | 13 | + (instancetype)groupForCollectionWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array { 14 | return [[AAKAAGroupForCollection alloc] initWithGroup:group asciiarts:array]; 15 | } 16 | 17 | - (instancetype)initWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array { 18 | self = [super init]; 19 | if (self) { 20 | _group = group; 21 | _asciiarts = array; 22 | } 23 | return self; 24 | } 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKAASupplementaryView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAASupplementaryView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/26. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKAASupplementaryView : UICollectionReusableView 12 | 13 | @property (nonatomic, strong) IBOutlet UILabel *groupTitleLabel; 14 | @property (nonatomic, strong) IBOutlet UILabel *numberOfAALabel; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKAASupplementaryView.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAASupplementaryView.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/26. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKAASupplementaryView.h" 10 | 11 | @implementation AAKAASupplementaryView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKCloudAARankingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKCloudAARankingViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/24. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKCloudAAViewController.h" 10 | 11 | @interface AAKCloudAARankingViewController : AAKCloudAAViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKCloudAASearchViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKCloudAASearchViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/23. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKCloudAAViewController.h" 10 | 11 | @interface AAKCloudAASearchViewController : AAKCloudAAViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKCloudRecentAAViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKCloudRecentAAViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/24. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKCloudAAViewController.h" 10 | 11 | @interface AAKCloudRecentAAViewController : AAKCloudAAViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKCloudSendReportViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKCloudSendReportViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/02/01. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKCloudSendReportViewController : UITableViewController 12 | 13 | @property (nonatomic, strong) AAKCloudASCIIArt *asciiart; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKDummyCollectionReusableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKDummyCollectionReusableView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/12/15. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKDummyCollectionReusableView : UICollectionReusableView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKDummyCollectionReusableView.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKDummyCollectionReusableView.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/12/15. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKDummyCollectionReusableView.h" 10 | 11 | @implementation AAKDummyCollectionReusableView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKHelpDummyTapView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKHelpDummyTapView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/09. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKHelpDummyTapView : UIView { 12 | IBOutlet UIView *targetView; 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKHelpDummyTapView.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKHelpDummyTapView.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/09. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKHelpDummyTapView.h" 10 | 11 | @implementation AAKHelpDummyTapView 12 | 13 | - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event { 14 | 15 | UIView *hitView = [super hitTest:point withEvent:event]; 16 | if (hitView == self) 17 | return targetView; 18 | 19 | return hitView; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKHelpSelectViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKHelpSelectViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/08. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKHelpSelectViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKHelpViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKHelpViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/12/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKHelpViewController : UIViewController { 12 | } 13 | @property (nonatomic, copy) NSString *helpIdentifier; 14 | @end 15 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKSettingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKSettingViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/19. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKSettingViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AAKeyboardApp/AAKeyboardApp.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.com.sonson.AAKeyboardApp 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AAKeyboardApp/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/06. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /AAKeyboardApp/Base.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | AAKeyboardApp 4 | 5 | Created by sonson on 2014/12/15. 6 | Copyright (c) 2014年 sonson. All rights reserved. 7 | */ 8 | CFBundleDisplayName = "AAKeyboard"; -------------------------------------------------------------------------------- /AAKeyboardApp/UINavigationController+Rotate.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationController+Rotate.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/15. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UINavigationController(Rotate) 12 | 13 | @end -------------------------------------------------------------------------------- /AAKeyboardApp/UINavigationController+Rotate.m: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationController+Rotate.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/15. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import "UINavigationController+Rotate.h" 10 | 11 | 12 | @implementation UINavigationController(Rotate) 13 | 14 | - (NSUInteger)supportedInterfaceOrientations { 15 | if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) 16 | return UIInterfaceOrientationMaskPortrait; 17 | return UIInterfaceOrientationMaskAll; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /AAKeyboardApp/UIViewController+Rotate.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+Rotate.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/15. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIViewController(Rotate) 12 | @end -------------------------------------------------------------------------------- /AAKeyboardApp/UIViewController+Rotate.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+Rotate.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/15. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import "UIViewController+Rotate.h" 10 | 11 | @implementation UIViewController(Rotate) 12 | 13 | - (NSUInteger)supportedInterfaceOrientations { 14 | if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) 15 | return UIInterfaceOrientationMaskPortrait; 16 | return UIInterfaceOrientationMaskAll; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /AAKeyboardApp/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | AAKeyboardApp 4 | 5 | Created by sonson on 2014/12/15. 6 | Copyright (c) 2014年 sonson. All rights reserved. 7 | */ 8 | CFBundleDisplayName = "AAキーボード"; -------------------------------------------------------------------------------- /AAKeyboardApp/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/AAKeyboardApp/ja.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /AAKeyboardApp/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/AAKeyboardApp/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /AAKeyboardApp/ja.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/AAKeyboardApp/ja.lproj/Main.strings -------------------------------------------------------------------------------- /AAKeyboardApp/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/06. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /iTunesConnect/en/readme.txt: -------------------------------------------------------------------------------- 1 | AAKeyboard is a keyboard to input ASCII Arts in iOS!!!!! 2 | Users can paste an ASCII Art to document using AAKeyboard. 3 | 4 | Users add favorite ASCII Arts to AAKeyboard with few steps. 5 | ーfrom Safari easily! 6 | ーfrom paste board directly! 7 | ーfrom 2ch viewer such as 2tch, instantly! -------------------------------------------------------------------------------- /iTunesConnect/en/version.txt: -------------------------------------------------------------------------------- 1 | ・Fixed the bug that keyboard does not show on iOS8.2 or prior. -------------------------------------------------------------------------------- /iTunesConnect/icon/icon1024x1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/icon/icon1024x1024.jpg -------------------------------------------------------------------------------- /iTunesConnect/icon/icon512x512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/icon/icon512x512.jpg -------------------------------------------------------------------------------- /iTunesConnect/ja/readme.txt: -------------------------------------------------------------------------------- 1 | アスキーアートを入力できるキーボードの登場です. 2 | また画像としてアスキーアートを貼り付けることもできます. 3 | 4 | ユーザが使いたいAAをどんどん!簡単に!追加することができます. 5 | ーSafariから簡単登録 6 | ーコピーしたAAをクリップボードから一発登録 7 | ー2tchなどのビューアから直接登録 -------------------------------------------------------------------------------- /iTunesConnect/ja/version.txt: -------------------------------------------------------------------------------- 1 | ・iOS8.2以前の環境でキーボードが正しく表示されないバグを修正. -------------------------------------------------------------------------------- /iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/001.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/002.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/003.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/004.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/3.5-Inch Retina Display Screenshots/005.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4-Inch Retina Display Screenshots/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4-Inch Retina Display Screenshots/001.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4-Inch Retina Display Screenshots/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4-Inch Retina Display Screenshots/002.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4-Inch Retina Display Screenshots/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4-Inch Retina Display Screenshots/003.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4-Inch Retina Display Screenshots/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4-Inch Retina Display Screenshots/004.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4-Inch Retina Display Screenshots/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4-Inch Retina Display Screenshots/005.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/001.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/002.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/003.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/004.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/4.7-Inch Retina Display Screenshots/005.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/001.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/002.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/003.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/004.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/5.5-Inch Retina Display Screenshots/005.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/iPad Screenshots/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/iPad Screenshots/001.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/iPad Screenshots/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/iPad Screenshots/002.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/iPad Screenshots/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/iPad Screenshots/003.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/iPad Screenshots/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/iPad Screenshots/004.jpg -------------------------------------------------------------------------------- /iTunesConnect/screenshot/iPad Screenshots/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/iTunesConnect/screenshot/iPad Screenshots/005.jpg -------------------------------------------------------------------------------- /keyboard/AAK10KeyView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAK10KeyView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/02/07. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class AAK10KeyView; 12 | 13 | @protocol AAK10KeyViewDelegate 14 | 15 | - (void)didPush10KeyView:(AAK10KeyView*)view key:(NSString*)key; 16 | 17 | @end 18 | 19 | @interface AAK10KeyView : UIView 20 | 21 | + (instancetype)viewFromNib; 22 | - (void)setBaseViewWidth:(CGFloat)width; 23 | 24 | @property (nonatomic, assign) id delegate; 25 | @property (nonatomic, assign) UIKeyboardAppearance keyboardAppearance; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /keyboard/AAKASCIIArtDummyHistoryGroup.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKASCIIArtDummyHistoryGroup.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/17. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKASCIIArtDummyHistoryGroup : NSObject 12 | 13 | @property (nonatomic) int64_t order; 14 | @property (nonatomic, retain) NSString * title; 15 | @property (nonatomic) int64_t type; 16 | 17 | /** 18 | * 履歴を意味するグループオブジェクトを生成する. 19 | * @return グループが履歴であることを示すAAKASCIIArtDummyHistoryGroupオブジェクト. 20 | **/ 21 | + (AAKASCIIArtDummyHistoryGroup*)historyGroup; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /keyboard/AAKASCIIArtDummyHistoryGroup.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKASCIIArtDummyHistoryGroup.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/17. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKASCIIArtDummyHistoryGroup.h" 10 | 11 | @implementation AAKASCIIArtDummyHistoryGroup 12 | 13 | /** 14 | * 履歴を意味するグループオブジェクトを生成する. 15 | * @return グループが履歴であることを示すAAKASCIIArtDummyHistoryGroupオブジェクト. 16 | **/ 17 | + (AAKASCIIArtDummyHistoryGroup*)historyGroup { 18 | AAKASCIIArtDummyHistoryGroup *obj = [[AAKASCIIArtDummyHistoryGroup alloc] init]; 19 | obj.title = @"history"; 20 | obj.type = AAKASCIIArtHistoryGroup; 21 | return obj; 22 | } 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /keyboard/AAKContentCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKContentCell.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AAKTextView.h" 12 | 13 | @interface AAKContentCell : UICollectionViewCell 14 | @property (nonatomic, readonly) UILabel *label; 15 | @property (nonatomic, readonly) AAKTextView *textView; 16 | @property (nonatomic, assign) BOOL isTail; 17 | @property (nonatomic, assign) BOOL isTop; 18 | @property (nonatomic, assign) UIKeyboardAppearance keyboardAppearance; 19 | - (UIColor*)colorForAA; 20 | @end 21 | -------------------------------------------------------------------------------- /keyboard/AAKNotifyView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKNotifyView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/11. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKNotifyView : UIView 12 | - (instancetype)initWithMarginSize:(CGSize)marginSize keyboardAppearance:(UIKeyboardAppearance)keyboardAppearance; 13 | - (void)setText:(NSString*)text; 14 | @end 15 | -------------------------------------------------------------------------------- /keyboard/AAKToolbarFooterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarFooterView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * UICollectionViewの右端に枠線を描画するためのフッタービュー 13 | **/ 14 | @interface AAKToolbarFooterView : UICollectionReusableView 15 | @property (nonatomic, assign) UIKeyboardAppearance keyboardAppearance; 16 | @end 17 | -------------------------------------------------------------------------------- /keyboard/AAKToolbarFooterView.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarFooterView.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKToolbarFooterView.h" 10 | 11 | #import "UIImage+keyboard.h" 12 | 13 | @interface AAKToolbarFooterView() { 14 | IBOutlet UIImageView *_leftSeperatorImageView; 15 | } 16 | @end 17 | 18 | @implementation AAKToolbarFooterView 19 | 20 | - (void)setKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance { 21 | _keyboardAppearance = keyboardAppearance; 22 | _leftSeperatorImageView.image = [UIImage leftEdgeWithKeyboardAppearance:_keyboardAppearance]; 23 | } 24 | 25 | - (void)awakeFromNib { 26 | [super awakeFromNib]; 27 | self.backgroundColor = [UIColor clearColor]; 28 | } 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /keyboard/AAKToolbarHeaderView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarHeaderView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * UICollectionViewの左端に枠線を描画するためのフッタービュー 13 | **/ 14 | @interface AAKToolbarHeaderView : UICollectionReusableView 15 | @property (nonatomic, assign) UIKeyboardAppearance keyboardAppearance; 16 | @end 17 | -------------------------------------------------------------------------------- /keyboard/AAKToolbarHeaderView.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarHeaderView.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKToolbarHeaderView.h" 10 | 11 | #import "UIImage+keyboard.h" 12 | 13 | @interface AAKToolbarHeaderView() { 14 | IBOutlet UIImageView *_rightSeperatorImageView; 15 | } 16 | @end 17 | 18 | @implementation AAKToolbarHeaderView 19 | 20 | - (void)setKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance { 21 | _keyboardAppearance = keyboardAppearance; 22 | _rightSeperatorImageView.image = [UIImage rightEdgeWithKeyboardAppearance:_keyboardAppearance]; 23 | } 24 | 25 | - (void)awakeFromNib { 26 | [super awakeFromNib]; 27 | self.backgroundColor = [UIColor clearColor]; 28 | } 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /keyboard/AAKToolbarHistoryCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarHistoryCell.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/12. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKToolbarCell.h" 10 | 11 | @interface AAKToolbarHistoryCell : AAKToolbarCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /keyboard/Base.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | AAKeyboardApp 4 | 5 | Created by sonson on 2014/12/15. 6 | Copyright (c) 2014年 sonson. All rights reserved. 7 | */ 8 | CFBundleDisplayName = "AAKeyboard"; -------------------------------------------------------------------------------- /keyboard/KeyboardViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // KeyboardViewController.h 3 | // keyboard 4 | // 5 | // Created by sonson on 2014/10/06. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface KeyboardViewController : UIInputViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /keyboard/UIColor+keyboard.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+keyboard.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/10. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIColor(keyboard) 12 | 13 | + (UIColor*)lightColorForDefault; 14 | 15 | + (UIColor*)darkColorForDefault; 16 | 17 | + (UIColor*)lightColorForDark; 18 | 19 | + (UIColor*)darkColorForDark; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /keyboard/UIColor+keyboard.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+keyboard.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/10. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "UIColor+keyboard.h" 10 | 11 | @implementation UIColor(keyboard) 12 | 13 | + (UIColor*)lightColorForDefault { 14 | return [UIColor colorWithRed:247/255.0f green:248/255.0f blue:249/255.0f alpha:1]; 15 | } 16 | 17 | + (UIColor*)darkColorForDefault { 18 | return [UIColor colorWithRed:187/255.0f green:190/255.0f blue:195/255.0f alpha:1]; 19 | } 20 | 21 | + (UIColor*)lightColorForDark { 22 | return [UIColor colorWithRed:180/255.0f green:200/255.0f blue:200/255.0f alpha:0.2]; 23 | } 24 | 25 | + (UIColor*)darkColorForDark { 26 | return [UIColor colorWithRed:20/255.0f green:20/255.0f blue:20/255.0f alpha:0.1]; 27 | } 28 | 29 | @end -------------------------------------------------------------------------------- /keyboard/UIImage+keyboard.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+keyboard.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/11. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage(keyboard) 12 | 13 | + (UIImage*)rightEdgeWithKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance; 14 | + (UIImage*)leftEdgeWithKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance; 15 | + (UIImage*)topEdgeWithKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /keyboard/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | AAKeyboardApp 4 | 5 | Created by sonson on 2014/12/15. 6 | Copyright (c) 2014年 sonson. All rights reserved. 7 | */ 8 | CFBundleDisplayName = "AAキーボード"; -------------------------------------------------------------------------------- /keyboard/keyboard.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.com.sonson.AAKeyboardApp 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /register/AAKRegisterActionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKRegisterActionViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/24. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKRegisterViewController.h" 10 | 11 | @interface AAKRegisterActionViewController : AAKRegisterViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /register/Base.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | AAKeyboardApp 4 | 5 | Created by sonson on 2014/12/15. 6 | Copyright (c) 2014年 sonson. All rights reserved. 7 | */ 8 | CFBundleDisplayName = "Register AA"; -------------------------------------------------------------------------------- /register/extension_js.js: -------------------------------------------------------------------------------- 1 | var MMExtensionClass = function() {}; 2 | 3 | MMExtensionClass.prototype = { 4 | run: function(arguments) { 5 | var text = window.getSelection().toString(); 6 | arguments.completionFunction({"content": text}); 7 | }, 8 | finalize: function(arguments) { 9 | document.body.innerHTML = arguments["content"]; 10 | } 11 | }; 12 | 13 | var ExtensionPreprocessingJS = new MMExtensionClass; -------------------------------------------------------------------------------- /register/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | AAKeyboardApp 4 | 5 | Created by sonson on 2014/12/15. 6 | Copyright (c) 2014年 sonson. All rights reserved. 7 | */ 8 | CFBundleDisplayName = "AA登録"; -------------------------------------------------------------------------------- /register/ja.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/register/ja.lproj/MainInterface.strings -------------------------------------------------------------------------------- /register/register.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.com.sonson.AAKeyboardApp 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/Images.xcassets/AABackView.imageset/AABackView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AABackView.imageset/AABackView.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AABackView.imageset/AABackView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AABackView.imageset/AABackView@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AABackView.imageset/AABackView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AABackView.imageset/AABackView@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AASectionBackView.imageset/AASectionBackView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AASectionBackView.imageset/AASectionBackView.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AASectionBackView.imageset/AASectionBackView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AASectionBackView.imageset/AASectionBackView@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AASectionBackView.imageset/AASectionBackView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AASectionBackView.imageset/AASectionBackView@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-29@2x-1.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/CloseButton.imageset/CloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/CloseButton.imageset/CloseButton.png -------------------------------------------------------------------------------- /resources/Images.xcassets/CloseButton.imageset/CloseButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/CloseButton.imageset/CloseButton@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/CloseButton.imageset/CloseButton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/CloseButton.imageset/CloseButton@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/CloseButton.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "CloseButton.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "CloseButton@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "CloseButton@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-29.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "Icon-29.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "Icon-29@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "Icon-29@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-29.imageset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-29.imageset/Icon-29.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-29.imageset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-29.imageset/Icon-29@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-29.imageset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-29.imageset/Icon-29@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-40.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "Icon-40.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "Icon-40@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "Icon-40@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-40.imageset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-40.imageset/Icon-40.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-40.imageset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-40.imageset/Icon-40@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-40.imageset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-40.imageset/Icon-40@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-60.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Icon-60@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "Icon-60@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-60.imageset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-60.imageset/Icon-60@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-60.imageset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-60.imageset/Icon-60@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-76.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "Icon-76.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "Icon-76@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-76.imageset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-76.imageset/Icon-76.png -------------------------------------------------------------------------------- /resources/Images.xcassets/Icon-76.imageset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/Icon-76.imageset/Icon-76@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/action001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action001.imageset/action001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action001.imageset/action001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action002.imageset/action002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action002.imageset/action002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action003.imageset/action003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action003.imageset/action003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action004.imageset/action004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action004.imageset/action004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action005.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action005.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action005.imageset/action005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action005.imageset/action005.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action006.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action006.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action006.imageset/action006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action006.imageset/action006.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action007.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action007.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action007.imageset/action007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action007.imageset/action007.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action_ipad001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad001.imageset/action_ipad001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action_ipad001.imageset/action_ipad001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action_ipad002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad002.imageset/action_ipad002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action_ipad002.imageset/action_ipad002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action_ipad003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad003.imageset/action_ipad003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action_ipad003.imageset/action_ipad003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action_ipad004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad004.imageset/action_ipad004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action_ipad004.imageset/action_ipad004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad005.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action_ipad005.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad005.imageset/action_ipad005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action_ipad005.imageset/action_ipad005.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad006.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action_ipad006.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad006.imageset/action_ipad006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action_ipad006.imageset/action_ipad006.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad007.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "action_ipad007.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/action_ipad007.imageset/action_ipad007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/action_ipad007.imageset/action_ipad007.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "app2tch001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch001.imageset/app2tch001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/app2tch001.imageset/app2tch001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "app2tch002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch002.imageset/app2tch002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/app2tch002.imageset/app2tch002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "app2tch003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch003.imageset/app2tch003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/app2tch003.imageset/app2tch003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "app2tch004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch004.imageset/app2tch004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/app2tch004.imageset/app2tch004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch_ipad001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "app2tch_ipad001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch_ipad001.imageset/app2tch_ipad001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/app2tch_ipad001.imageset/app2tch_ipad001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch_ipad002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "app2tch_ipad002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch_ipad002.imageset/app2tch_ipad002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/app2tch_ipad002.imageset/app2tch_ipad002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch_ipad003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "app2tch_ipad003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch_ipad003.imageset/app2tch_ipad003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/app2tch_ipad003.imageset/app2tch_ipad003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch_ipad004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "app2tch_ipad004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/app2tch_ipad004.imageset/app2tch_ipad004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/app2tch_ipad004.imageset/app2tch_ipad004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/cloud.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "cloud.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "cloud@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "cloud@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/cloud.imageset/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloud.imageset/cloud.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloud.imageset/cloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloud.imageset/cloud@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloud.imageset/cloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloud.imageset/cloud@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudDownload.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "cloudDownload.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "cloudDownload@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "cloudDownload@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudDownload.imageset/cloudDownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudDownload.imageset/cloudDownload.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudDownload.imageset/cloudDownload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudDownload.imageset/cloudDownload@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudDownload.imageset/cloudDownload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudDownload.imageset/cloudDownload@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudDownloadBlue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "cloudDownloadBlue.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "cloudDownloadBlue@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "cloudDownloadBlue@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudDownloadBlue.imageset/cloudDownloadBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudDownloadBlue.imageset/cloudDownloadBlue.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudDownloadBlue.imageset/cloudDownloadBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudDownloadBlue.imageset/cloudDownloadBlue@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudDownloadBlue.imageset/cloudDownloadBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudDownloadBlue.imageset/cloudDownloadBlue@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudUpload.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "cloudUpload.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "cloudUpload@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "cloudUpload@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudUpload.imageset/cloudUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudUpload.imageset/cloudUpload.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudUpload.imageset/cloudUpload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudUpload.imageset/cloudUpload@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudUpload.imageset/cloudUpload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudUpload.imageset/cloudUpload@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudUploadBlue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "cloudUploadBlue.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "cloudUploadBlue@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "cloudUploadBlue@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudUploadBlue.imageset/cloudUploadBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudUploadBlue.imageset/cloudUploadBlue.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudUploadBlue.imageset/cloudUploadBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudUploadBlue.imageset/cloudUploadBlue@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/cloudUploadBlue.imageset/cloudUploadBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/cloudUploadBlue.imageset/cloudUploadBlue@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/copy001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy001.imageset/copy001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy001.imageset/copy001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy002.imageset/copy002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy002.imageset/copy002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy003.imageset/copy003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy003.imageset/copy003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy004.imageset/copy004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy004.imageset/copy004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy005.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy005.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy005.imageset/copy005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy005.imageset/copy005.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy006.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy006.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy006.imageset/copy006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy006.imageset/copy006.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage001.imageset/copyAsImage001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage001.imageset/copyAsImage001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage002.imageset/copyAsImage002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage002.imageset/copyAsImage002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage003.imageset/copyAsImage003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage003.imageset/copyAsImage003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage004.imageset/copyAsImage004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage004.imageset/copyAsImage004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage005.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage005.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage005.imageset/copyAsImage005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage005.imageset/copyAsImage005.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage_ipad001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad001.imageset/copyAsImage_ipad001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage_ipad001.imageset/copyAsImage_ipad001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage_ipad002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad002.imageset/copyAsImage_ipad002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage_ipad002.imageset/copyAsImage_ipad002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage_ipad003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad003.imageset/copyAsImage_ipad003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage_ipad003.imageset/copyAsImage_ipad003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage_ipad004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad004.imageset/copyAsImage_ipad004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage_ipad004.imageset/copyAsImage_ipad004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad005.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copyAsImage_ipad005.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copyAsImage_ipad005.imageset/copyAsImage_ipad005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copyAsImage_ipad005.imageset/copyAsImage_ipad005.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy_ipad001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad001.imageset/copy_ipad001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy_ipad001.imageset/copy_ipad001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy_ipad002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad002.imageset/copy_ipad002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy_ipad002.imageset/copy_ipad002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy_ipad003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad003.imageset/copy_ipad003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy_ipad003.imageset/copy_ipad003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy_ipad004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad004.imageset/copy_ipad004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy_ipad004.imageset/copy_ipad004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad005.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy_ipad005.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad005.imageset/copy_ipad005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy_ipad005.imageset/copy_ipad005.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad006.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "copy_ipad006.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/copy_ipad006.imageset/copy_ipad006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/copy_ipad006.imageset/copy_ipad006.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "gear.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "gear@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "gear@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/gear.imageset/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/gear.imageset/gear.png -------------------------------------------------------------------------------- /resources/Images.xcassets/gear.imageset/gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/gear.imageset/gear@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/gear.imageset/gear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/gear.imageset/gear@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/help.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "help.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "help@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "help@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/help.imageset/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/help.imageset/help.png -------------------------------------------------------------------------------- /resources/Images.xcassets/help.imageset/help@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/help.imageset/help@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/help.imageset/help@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/help.imageset/help@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/historyOnTab.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "historyOnTab.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "historyOnTab@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "historyOnTab@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/historyOnTab.imageset/historyOnTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/historyOnTab.imageset/historyOnTab.png -------------------------------------------------------------------------------- /resources/Images.xcassets/historyOnTab.imageset/historyOnTab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/historyOnTab.imageset/historyOnTab@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/historyOnTab.imageset/historyOnTab@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/historyOnTab.imageset/historyOnTab@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/iTunesArtwork.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "iTunesArtwork@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/iTunesArtwork.imageset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/iTunesArtwork.imageset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/iphone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "iphone.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "iphone@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "iphone@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/iphone.imageset/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/iphone.imageset/iphone.png -------------------------------------------------------------------------------- /resources/Images.xcassets/iphone.imageset/iphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/iphone.imageset/iphone@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/iphone.imageset/iphone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/iphone.imageset/iphone@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/launchAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "launchAppIcon.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "launchAppIcon@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "launchAppIcon@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/launchAppIcon.imageset/launchAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/launchAppIcon.imageset/launchAppIcon.png -------------------------------------------------------------------------------- /resources/Images.xcassets/launchAppIcon.imageset/launchAppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/launchAppIcon.imageset/launchAppIcon@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/launchAppIcon.imageset/launchAppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/launchAppIcon.imageset/launchAppIcon@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "like.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "like@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "like@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/like.imageset/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/like.imageset/like.png -------------------------------------------------------------------------------- /resources/Images.xcassets/like.imageset/like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/like.imageset/like@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/like.imageset/like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/like.imageset/like@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/list.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "list.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "list@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "list@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/list.imageset/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/list.imageset/list.png -------------------------------------------------------------------------------- /resources/Images.xcassets/list.imageset/list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/list.imageset/list@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/list.imageset/list@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/list.imageset/list@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/miniLike.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "miniLike.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "miniLike@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "miniLike@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/miniLike.imageset/miniLike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/miniLike.imageset/miniLike.png -------------------------------------------------------------------------------- /resources/Images.xcassets/miniLike.imageset/miniLike@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/miniLike.imageset/miniLike@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/miniLike.imageset/miniLike@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/miniLike.imageset/miniLike@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/paste.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "paste.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "paste@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "paste@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/paste.imageset/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/paste.imageset/paste.png -------------------------------------------------------------------------------- /resources/Images.xcassets/paste.imageset/paste@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/paste.imageset/paste@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/paste.imageset/paste@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/paste.imageset/paste@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/pen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "pen.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "pen@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "pen@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/pen.imageset/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/pen.imageset/pen.png -------------------------------------------------------------------------------- /resources/Images.xcassets/pen.imageset/pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/pen.imageset/pen@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/pen.imageset/pen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/pen.imageset/pen@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/photoLibrary.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "photoLibrary.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "photoLibrary@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "photoLibrary@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/photoLibrary.imageset/photoLibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/photoLibrary.imageset/photoLibrary.png -------------------------------------------------------------------------------- /resources/Images.xcassets/photoLibrary.imageset/photoLibrary@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/photoLibrary.imageset/photoLibrary@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/photoLibrary.imageset/photoLibrary@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/photoLibrary.imageset/photoLibrary@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "plus.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "plus@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "plus@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/plus.imageset/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/plus.imageset/plus.png -------------------------------------------------------------------------------- /resources/Images.xcassets/plus.imageset/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/plus.imageset/plus@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/plus.imageset/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/plus.imageset/plus@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/ranking.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "ranking.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "ranking@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "ranking@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/ranking.imageset/ranking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/ranking.imageset/ranking.png -------------------------------------------------------------------------------- /resources/Images.xcassets/ranking.imageset/ranking@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/ranking.imageset/ranking@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/ranking.imageset/ranking@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/ranking.imageset/ranking@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/report.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "report.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "report@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "report@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/report.imageset/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/report.imageset/report.png -------------------------------------------------------------------------------- /resources/Images.xcassets/report.imageset/report@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/report.imageset/report@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/report.imageset/report@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/report.imageset/report@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "search.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "search@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "search@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/search.imageset/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/search.imageset/search.png -------------------------------------------------------------------------------- /resources/Images.xcassets/search.imageset/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/search.imageset/search@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/search.imageset/search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/search.imageset/search@3x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/setup001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup001.imageset/setup001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup001.imageset/setup001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup002.imageset/setup002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup002.imageset/setup002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup003.imageset/setup003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup003.imageset/setup003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup004.imageset/setup004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup004.imageset/setup004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup005.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup005.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup005.imageset/setup005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup005.imageset/setup005.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup006.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup006.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup006.imageset/setup006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup006.imageset/setup006.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup007.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup007.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup007.imageset/setup007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup007.imageset/setup007.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup008.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup008.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup008.imageset/setup008.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup008.imageset/setup008.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup009.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup009.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup009.imageset/setup009.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup009.imageset/setup009.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad001.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad001.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad001.imageset/setup_ipad001.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad001.imageset/setup_ipad001.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad002.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad002.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad002.imageset/setup_ipad002.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad002.imageset/setup_ipad002.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad003.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad003.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad003.imageset/setup_ipad003.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad003.imageset/setup_ipad003.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad004.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad004.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad004.imageset/setup_ipad004.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad004.imageset/setup_ipad004.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad005.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad005.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad005.imageset/setup_ipad005.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad005.imageset/setup_ipad005.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad006.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad006.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad006.imageset/setup_ipad006.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad006.imageset/setup_ipad006.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad007.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad007.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad007.imageset/setup_ipad007.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad007.imageset/setup_ipad007.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad008.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad008.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad008.imageset/setup_ipad008.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad008.imageset/setup_ipad008.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad009.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "setup_ipad009.jpeg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/setup_ipad009.imageset/setup_ipad009.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/setup_ipad009.imageset/setup_ipad009.jpeg -------------------------------------------------------------------------------- /resources/Images.xcassets/trash.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "trash.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "trash@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "trash@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/Images.xcassets/trash.imageset/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/trash.imageset/trash.png -------------------------------------------------------------------------------- /resources/Images.xcassets/trash.imageset/trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/trash.imageset/trash@2x.png -------------------------------------------------------------------------------- /resources/Images.xcassets/trash.imageset/trash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/Images.xcassets/trash.imageset/trash@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/asciiart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "asciiart.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "asciiart@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "asciiart@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/asciiart.imageset/asciiart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/asciiart.imageset/asciiart.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/asciiart.imageset/asciiart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/asciiart.imageset/asciiart@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/asciiart.imageset/asciiart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/asciiart.imageset/asciiart@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/asciiartHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "asciiartHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "asciiartHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "asciiartHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/asciiartHD.imageset/asciiartHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/asciiartHD.imageset/asciiartHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/asciiartHD.imageset/asciiartHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/asciiartHD.imageset/asciiartHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/asciiartHD.imageset/asciiartHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/asciiartHD.imageset/asciiartHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkLeftEdge.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "darkLeftEdge.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "darkLeftEdge@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "darkLeftEdge@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkLeftEdge.imageset/darkLeftEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkLeftEdge.imageset/darkLeftEdge.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkLeftEdge.imageset/darkLeftEdge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkLeftEdge.imageset/darkLeftEdge@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkLeftEdge.imageset/darkLeftEdge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkLeftEdge.imageset/darkLeftEdge@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkRightEdge.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "darkRightEdge.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "darkRightEdge@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "darkRightEdge@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkRightEdge.imageset/darkRightEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkRightEdge.imageset/darkRightEdge.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkRightEdge.imageset/darkRightEdge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkRightEdge.imageset/darkRightEdge@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkRightEdge.imageset/darkRightEdge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkRightEdge.imageset/darkRightEdge@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkTopEdge.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "darkTopEdge.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "darkTopEdge@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "darkTopEdge@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkTopEdge.imageset/darkTopEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkTopEdge.imageset/darkTopEdge.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkTopEdge.imageset/darkTopEdge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkTopEdge.imageset/darkTopEdge@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/darkTopEdge.imageset/darkTopEdge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/darkTopEdge.imageset/darkTopEdge@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/delete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "delete.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "delete@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "delete@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/delete.imageset/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/delete.imageset/delete.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/delete.imageset/delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/delete.imageset/delete@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/delete.imageset/delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/delete.imageset/delete@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/deleteHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "deleteHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "deleteHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "deleteHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/deleteHD.imageset/deleteHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/deleteHD.imageset/deleteHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/deleteHD.imageset/deleteHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/deleteHD.imageset/deleteHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/deleteHD.imageset/deleteHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/deleteHD.imageset/deleteHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/global.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "global.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "global@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "global@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/global.imageset/global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/global.imageset/global.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/global.imageset/global@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/global.imageset/global@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/global.imageset/global@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/global.imageset/global@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/globalHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "globalHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "globalHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "globalHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/globalHD.imageset/globalHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/globalHD.imageset/globalHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/globalHD.imageset/globalHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/globalHD.imageset/globalHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/globalHD.imageset/globalHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/globalHD.imageset/globalHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hasciiart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hasciiart.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hasciiart@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hasciiart@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hasciiart.imageset/hasciiart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hasciiart.imageset/hasciiart.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hasciiart.imageset/hasciiart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hasciiart.imageset/hasciiart@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hasciiart.imageset/hasciiart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hasciiart.imageset/hasciiart@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hasciiartHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hasciiartHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hasciiartHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hasciiartHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hasciiartHD.imageset/hasciiartHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hasciiartHD.imageset/hasciiartHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hasciiartHD.imageset/hasciiartHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hasciiartHD.imageset/hasciiartHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hasciiartHD.imageset/hasciiartHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hasciiartHD.imageset/hasciiartHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hdelete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hdelete.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hdelete@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hdelete@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hdelete.imageset/hdelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hdelete.imageset/hdelete.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hdelete.imageset/hdelete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hdelete.imageset/hdelete@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hdelete.imageset/hdelete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hdelete.imageset/hdelete@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hdeleteHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hdeleteHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hdeleteHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hdeleteHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hdeleteHD.imageset/hdeleteHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hdeleteHD.imageset/hdeleteHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hdeleteHD.imageset/hdeleteHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hdeleteHD.imageset/hdeleteHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hdeleteHD.imageset/hdeleteHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hdeleteHD.imageset/hdeleteHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hglobal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hglobal.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hglobal@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hglobal@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hglobal.imageset/hglobal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hglobal.imageset/hglobal.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hglobal.imageset/hglobal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hglobal.imageset/hglobal@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hglobal.imageset/hglobal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hglobal.imageset/hglobal@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hglobalHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hglobalHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hglobalHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hglobalHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hglobalHD.imageset/hglobalHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hglobalHD.imageset/hglobalHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hglobalHD.imageset/hglobalHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hglobalHD.imageset/hglobalHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hglobalHD.imageset/hglobalHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hglobalHD.imageset/hglobalHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hhistory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hhistory.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hhistory@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hhistory@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hhistory.imageset/hhistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hhistory.imageset/hhistory.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hhistory.imageset/hhistory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hhistory.imageset/hhistory@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hhistory.imageset/hhistory@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hhistory.imageset/hhistory@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hhistoryHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hhistoryHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hhistoryHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hhistoryHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hhistoryHD.imageset/hhistoryHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hhistoryHD.imageset/hhistoryHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hhistoryHD.imageset/hhistoryHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hhistoryHD.imageset/hhistoryHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hhistoryHD.imageset/hhistoryHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hhistoryHD.imageset/hhistoryHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/history.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "history.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "history@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "history@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/history.imageset/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/history.imageset/history.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/history.imageset/history@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/history.imageset/history@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/history.imageset/history@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/history.imageset/history@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/historyHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "historyHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "historyHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "historyHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/historyHD.imageset/historyHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/historyHD.imageset/historyHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/historyHD.imageset/historyHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/historyHD.imageset/historyHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/historyHD.imageset/historyHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/historyHD.imageset/historyHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hnumberKey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hnumberKey.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hnumberKey@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hnumberKey@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hnumberKey.imageset/hnumberKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hnumberKey.imageset/hnumberKey.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hnumberKey.imageset/hnumberKey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hnumberKey.imageset/hnumberKey@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hnumberKey.imageset/hnumberKey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hnumberKey.imageset/hnumberKey@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hnumberKeyHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "hnumberKeyHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "hnumberKeyHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "hnumberKeyHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hnumberKeyHD.imageset/hnumberKeyHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hnumberKeyHD.imageset/hnumberKeyHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hnumberKeyHD.imageset/hnumberKeyHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hnumberKeyHD.imageset/hnumberKeyHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/hnumberKeyHD.imageset/hnumberKeyHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/hnumberKeyHD.imageset/hnumberKeyHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/leftEdge.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "leftEdge.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "leftEdge@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "leftEdge@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/leftEdge.imageset/leftEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/leftEdge.imageset/leftEdge.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/leftEdge.imageset/leftEdge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/leftEdge.imageset/leftEdge@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/leftEdge.imageset/leftEdge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/leftEdge.imageset/leftEdge@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/numberKey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "numberKey.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "numberKey@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "numberKey@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/numberKey.imageset/numberKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/numberKey.imageset/numberKey.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/numberKey.imageset/numberKey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/numberKey.imageset/numberKey@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/numberKey.imageset/numberKey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/numberKey.imageset/numberKey@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/numberKeyHD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "numberKeyHD.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "numberKeyHD@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "numberKeyHD@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/numberKeyHD.imageset/numberKeyHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/numberKeyHD.imageset/numberKeyHD.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/numberKeyHD.imageset/numberKeyHD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/numberKeyHD.imageset/numberKeyHD@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/numberKeyHD.imageset/numberKeyHD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/numberKeyHD.imageset/numberKeyHD@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/rightEdge.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "rightEdge.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "rightEdge@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "rightEdge@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/rightEdge.imageset/rightEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/rightEdge.imageset/rightEdge.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/rightEdge.imageset/rightEdge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/rightEdge.imageset/rightEdge@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/rightEdge.imageset/rightEdge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/rightEdge.imageset/rightEdge@3x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/topEdge.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "topEdge.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "topEdge@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "topEdge@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /resources/keyboard.xcassets/topEdge.imageset/topEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/topEdge.imageset/topEdge.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/topEdge.imageset/topEdge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/topEdge.imageset/topEdge@2x.png -------------------------------------------------------------------------------- /resources/keyboard.xcassets/topEdge.imageset/topEdge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/keyboard.xcassets/topEdge.imageset/topEdge@3x.png -------------------------------------------------------------------------------- /resources/mona.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/mona.ttf -------------------------------------------------------------------------------- /resources/register.xcassets/ExtensionIcon.appiconset/ExtensionIcon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/register.xcassets/ExtensionIcon.appiconset/ExtensionIcon-60@2x.png -------------------------------------------------------------------------------- /resources/register.xcassets/ExtensionIcon.appiconset/ExtensionIcon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/register.xcassets/ExtensionIcon.appiconset/ExtensionIcon-60@3x.png -------------------------------------------------------------------------------- /resources/register.xcassets/ExtensionIcon.appiconset/ExtensionIcon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/register.xcassets/ExtensionIcon.appiconset/ExtensionIcon-76.png -------------------------------------------------------------------------------- /resources/register.xcassets/ExtensionIcon.appiconset/ExtensionIcon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/resources/register.xcassets/ExtensionIcon.appiconset/ExtensionIcon-76@2x.png -------------------------------------------------------------------------------- /shared/AAKAAGroupForCollection.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAAGroupForCollection.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/08. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class AAKASCIIArtGroup; 12 | @class AAKASCIIArt; 13 | 14 | @interface AAKAAGroupForCollection : NSObject 15 | 16 | @property (nonatomic, readonly) AAKASCIIArtGroup *group; 17 | @property (nonatomic, readonly) NSArray *asciiarts; 18 | 19 | + (instancetype)groupForCollectionWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /shared/AAKAAGroupForCollection.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKAAGroupForCollection.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/08. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKAAGroupForCollection.h" 10 | 11 | @implementation AAKAAGroupForCollection 12 | 13 | + (instancetype)groupForCollectionWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array { 14 | return [[AAKAAGroupForCollection alloc] initWithGroup:group asciiarts:array]; 15 | } 16 | 17 | - (instancetype)initWithGroup:(AAKASCIIArtGroup*)group asciiarts:(NSArray*)array { 18 | self = [super init]; 19 | if (self) { 20 | _group = group; 21 | _asciiarts = array; 22 | } 23 | return self; 24 | } 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /shared/AAKASCIIArt.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKASCIIArt.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/17. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | #import "AAKAAEditAnimatedTransitioning.h" 12 | 13 | @class AAKASCIIArtGroup; 14 | 15 | @interface AAKASCIIArt : NSManagedObject 16 | 17 | @property (nonatomic) double lastUsedTime; 18 | @property (nonatomic) double ratio; 19 | @property (nonatomic, retain) NSString * text; 20 | @property (nonatomic, retain) NSString * title; 21 | @property (nonatomic, retain) AAKASCIIArtGroup *group; 22 | 23 | @property (nonatomic, assign) CGSize contentSize; 24 | 25 | - (void)updateLastUsedTime; 26 | 27 | - (void)updateRatio; 28 | 29 | + (NSData*)dataForJsonAllData; 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /shared/AAKASCIIArtGroup.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKASCIIArtGroup.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/17. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface AAKASCIIArtGroup : NSManagedObject 13 | 14 | @property (nonatomic) int64_t order; 15 | @property (nonatomic, retain) NSString * title; 16 | @property (nonatomic) int64_t type; 17 | 18 | + (void)addDefaultASCIIArtGroup; 19 | + (AAKASCIIArtGroup*)defaultGroup; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /shared/AAKCreateNewGroupViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKCreateNewGroupViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/15. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKCreateNewGroupViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /shared/AAKEditViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKEditViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/22. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class AAKASCIIArt; 12 | @class AAKASCIIArtGroup; 13 | 14 | @interface AAKEditViewController : UIViewController { 15 | IBOutlet UISlider *_fontSizeSlider; 16 | IBOutlet UITableView *_groupTableView; 17 | IBOutlet NSLayoutConstraint *_bottomTextViewMargin; 18 | } 19 | @property (nonatomic, strong) IBOutlet UITextView *AATextView; 20 | 21 | @property (nonatomic, strong) AAKASCIIArt *asciiart; 22 | @property (nonatomic, strong) AAKASCIIArtGroup *group; 23 | 24 | - (IBAction)didChangeSlider:(id)sender; 25 | - (IBAction)save:(id)sender; 26 | - (IBAction)cancel:(id)sender; 27 | @end 28 | -------------------------------------------------------------------------------- /shared/AAKGroupRenameViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKGroupRenameViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/25. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AAKGroupRenameViewController : UITableViewController 12 | 13 | @property (nonatomic, strong) AAKASCIIArtGroup *group; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /shared/AAKRegisterViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKRegisterViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/22. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKEditViewController.h" 10 | 11 | @interface AAKRegisterViewController : AAKEditViewController 12 | 13 | /** 14 | * 現在選択されているグループオブジェクトの識別子をApp GroupのUserDefaultに保存する. 15 | **/ 16 | - (void)saveCurrentGroup; 17 | 18 | /** 19 | * 最後に選択されたグループを取りだし,現在の保存先グループとしてセットする. 20 | **/ 21 | - (void)restoreCurrentGroup; 22 | 23 | @property (nonatomic, copy) NSURL *callbackSchemeURL; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /shared/AAKSelectGroupViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKSelectGroupViewController.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/15. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class ActionViewController; 12 | @class AAKEditViewController; 13 | 14 | @interface AAKSelectGroupViewController : UITableViewController 15 | 16 | @property (nonatomic, assign) AAKEditViewController *editViewController; /** 編集ビューコントローラ.変更したグループを設定するためにセットする.コードが汚い.*/ 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /shared/AAKTextView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKTextView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/12. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "UZTextView.h" 10 | 11 | extern NSString *const AAKTextViewDidCopyAAImageToPasteboard; 12 | 13 | @interface AAKTextView : UZTextView 14 | 15 | /** 16 | * クリップボードにAAの画像を転送するために,画像データを作るためのメソッド. 17 | * @return UIImageオブジェクト. 18 | **/ 19 | - (UIImage*)imageForPasteBoard; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /shared/AAKToolbarFooterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarFooterView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * UICollectionViewの右端に枠線を描画するためのフッタービュー 13 | **/ 14 | @interface AAKToolbarFooterView : UICollectionReusableView 15 | @property (nonatomic, assign) UIKeyboardAppearance keyboardAppearance; 16 | @end 17 | -------------------------------------------------------------------------------- /shared/AAKToolbarFooterView.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarFooterView.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKToolbarFooterView.h" 10 | 11 | @interface AAKToolbarFooterView() { 12 | IBOutlet UIImageView *_leftSeperatorImageView; 13 | } 14 | @end 15 | 16 | @implementation AAKToolbarFooterView 17 | 18 | - (void)setKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance { 19 | _keyboardAppearance = keyboardAppearance; 20 | _leftSeperatorImageView.image = [UIImage leftEdgeWithKeyboardAppearance:_keyboardAppearance]; 21 | } 22 | 23 | - (void)awakeFromNib { 24 | [super awakeFromNib]; 25 | self.backgroundColor = [UIColor clearColor]; 26 | } 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /shared/AAKToolbarHeaderView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarHeaderView.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * UICollectionViewの左端に枠線を描画するためのフッタービュー 13 | **/ 14 | @interface AAKToolbarHeaderView : UICollectionReusableView 15 | @property (nonatomic, assign) UIKeyboardAppearance keyboardAppearance; 16 | @end 17 | -------------------------------------------------------------------------------- /shared/AAKToolbarHeaderView.m: -------------------------------------------------------------------------------- 1 | // 2 | // AAKToolbarHeaderView.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/09. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "AAKToolbarHeaderView.h" 10 | 11 | @interface AAKToolbarHeaderView() { 12 | IBOutlet UIImageView *_rightSeperatorImageView; 13 | } 14 | @end 15 | 16 | @implementation AAKToolbarHeaderView 17 | 18 | - (void)setKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance { 19 | _keyboardAppearance = keyboardAppearance; 20 | _rightSeperatorImageView.image = [UIImage rightEdgeWithKeyboardAppearance:_keyboardAppearance]; 21 | } 22 | 23 | - (void)awakeFromNib { 24 | [super awakeFromNib]; 25 | self.backgroundColor = [UIColor clearColor]; 26 | } 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /shared/CKModifyRecordsOperation+AA.h: -------------------------------------------------------------------------------- 1 | // 2 | // CKModifyRecordsOperation+AA.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/29. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CKModifyRecordsOperation(AA) 12 | + (instancetype)testModifyRecordsOperationWithRecordsToSave:(NSArray /* CKRecord */ *)records recordIDsToDelete:(NSArray /* CKRecordID */ *)recordIDs; 13 | @end -------------------------------------------------------------------------------- /shared/NSParagraphStyle+keyboard.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSParagraphStyle+keyboard.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/12. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSParagraphStyle(keyboard) 12 | 13 | /** 14 | * フォントサイズを指定して,行間などのAttributeが設定されたNSParagraphStyleオブジェクトを生成する. 15 | * @param fontSize パラグラフスタイル適用するNSAttributedStringに割り当てるフォントの大きさ. 16 | * @return NSParagraphStyleオブジェクト. 17 | **/ 18 | + (NSParagraphStyle*)defaultParagraphStyleWithFontSize:(float)fontSize; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /shared/UIColor+keyboard.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+keyboard.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/10. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIColor(keyboard) 12 | 13 | + (UIColor*)lightColorForDefault; 14 | 15 | + (UIColor*)darkColorForDefault; 16 | 17 | + (UIColor*)lightColorForDark; 18 | 19 | + (UIColor*)darkColorForDark; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /shared/UIColor+keyboard.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+keyboard.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/10. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import "UIColor+keyboard.h" 10 | 11 | @implementation UIColor(keyboard) 12 | 13 | + (UIColor*)lightColorForDefault { 14 | return [UIColor colorWithRed:247/255.0f green:248/255.0f blue:249/255.0f alpha:1]; 15 | } 16 | 17 | + (UIColor*)darkColorForDefault { 18 | return [UIColor colorWithRed:187/255.0f green:190/255.0f blue:195/255.0f alpha:1]; 19 | } 20 | 21 | + (UIColor*)lightColorForDark { 22 | return [UIColor colorWithRed:180/255.0f green:200/255.0f blue:200/255.0f alpha:0.2]; 23 | } 24 | 25 | + (UIColor*)darkColorForDark { 26 | return [UIColor colorWithRed:20/255.0f green:20/255.0f blue:20/255.0f alpha:0.1]; 27 | } 28 | 29 | @end -------------------------------------------------------------------------------- /shared/UIImage+keyboard.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+keyboard.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/11/11. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage(keyboard) 12 | 13 | + (UIImage*)rightEdgeWithKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance; 14 | + (UIImage*)leftEdgeWithKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance; 15 | + (UIImage*)topEdgeWithKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /shared/UINavigationController+Rotate.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationController+Rotate.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/15. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UINavigationController(Rotate) 12 | 13 | @end -------------------------------------------------------------------------------- /shared/UINavigationController+Rotate.m: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationController+Rotate.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/15. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import "UINavigationController+Rotate.h" 10 | 11 | 12 | @implementation UINavigationController(Rotate) 13 | 14 | - (NSUInteger)supportedInterfaceOrientations { 15 | if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) 16 | return UIInterfaceOrientationMaskPortrait; 17 | return UIInterfaceOrientationMaskAll; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /shared/UITraitCollection+keyboard.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITraitCollection+keyboard.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2014/10/07. 6 | // Copyright (c) 2014年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UITraitCollection(keyboard) 12 | 13 | - (NSString*)description; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /shared/UIViewController+Rotate.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+Rotate.h 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/15. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIViewController(Rotate) 12 | @end -------------------------------------------------------------------------------- /shared/UIViewController+Rotate.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+Rotate.m 3 | // AAKeyboardApp 4 | // 5 | // Created by sonson on 2015/01/15. 6 | // Copyright (c) 2015年 sonson. All rights reserved. 7 | // 8 | 9 | #import "UIViewController+Rotate.h" 10 | 11 | @implementation UIViewController(Rotate) 12 | 13 | - (NSUInteger)supportedInterfaceOrientations { 14 | if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone) 15 | return UIInterfaceOrientationMaskPortrait; 16 | return UIInterfaceOrientationMaskAll; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /sketch/application.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/sketch/application.sketch -------------------------------------------------------------------------------- /sketch/extension.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/sketch/extension.sketch -------------------------------------------------------------------------------- /sketch/help.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/sketch/help.sketch -------------------------------------------------------------------------------- /sketch/keyboard.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/AAKeyboard/1a52bea94efc554e094a104453ca88fae21c6ca6/sketch/keyboard.sketch -------------------------------------------------------------------------------- /vendor/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSAttributeDescription+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSAttributeDescription (MagicalRecord_DataImport) 12 | 13 | - (NSString *) MR_primaryKey; 14 | - (id) MR_valueForKeyPath:(NSString *)keyPath fromObjectData:(id)objectData; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSNumber+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface NSNumber (MagicalRecord_DataImport) 13 | 14 | - (NSString *) MR_lookupKeyForAttribute:(NSAttributeDescription *)attributeInfo; 15 | - (id) MR_relatedValueForRelationship:(NSRelationshipDescription *)relationshipInfo; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSNumber+MagicalDataImport.m 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "NSNumber+MagicalDataImport.h" 10 | 11 | 12 | 13 | @implementation NSNumber (MagicalRecord_DataImport) 14 | 15 | - (id) MR_relatedValueForRelationship:(NSRelationshipDescription *)relationshipInfo 16 | { 17 | return self; 18 | } 19 | 20 | - (NSString *) MR_lookupKeyForAttribute:(NSAttributeDescription *)attributeInfo 21 | { 22 | return nil; 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSDictionary+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface NSObject (MagicalRecord_DataImport) 13 | 14 | - (NSString *) MR_lookupKeyForAttribute:(NSAttributeDescription *)attributeInfo; 15 | - (id) MR_valueForAttribute:(NSAttributeDescription *)attributeInfo; 16 | 17 | - (NSString *) MR_lookupKeyForRelationship:(NSRelationshipDescription *)relationshipInfo; 18 | - (id) MR_relatedValueForRelationship:(NSRelationshipDescription *)relationshipInfo; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSRelationshipDescription+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSRelationshipDescription (MagicalRecord_DataImport) 12 | 13 | - (NSString *) MR_primaryKey; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSRelationshipDescription+MagicalDataImport.m 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "NSRelationshipDescription+MagicalDataImport.h" 10 | #import "NSManagedObject+MagicalDataImport.h" 11 | #import "MagicalImportFunctions.h" 12 | #import "MagicalRecord.h" 13 | 14 | @implementation NSRelationshipDescription (MagicalRecord_DataImport) 15 | 16 | - (NSString *) MR_primaryKey; 17 | { 18 | NSString *primaryKeyName = [[self userInfo] valueForKey:kMagicalRecordImportRelationshipLinkedByKey] ?: 19 | MR_primaryKeyNameFromString([[self destinationEntity] name]); 20 | 21 | return primaryKeyName; 22 | } 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+MagicalRecord_MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 12/10/11. 6 | // Copyright (c) 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface NSString (MagicalRecord_DataImport) 13 | 14 | - (NSString *) MR_capitalizedFirstCharacterString; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSPersistentStore+MagicalRecord.h 3 | // 4 | // Created by Saul Mora on 3/11/10. 5 | // Copyright 2010 Magical Panda Software, LLC All rights reserved. 6 | // 7 | 8 | #import "MagicalRecord.h" 9 | #import 10 | 11 | // option to autodelete store if it already exists 12 | 13 | extern NSString * const kMagicalRecordDefaultStoreFileName; 14 | 15 | 16 | @interface NSPersistentStore (MagicalRecord) 17 | 18 | + (NSURL *) MR_defaultLocalStoreUrl; 19 | 20 | + (NSPersistentStore *) MR_defaultPersistentStore; 21 | + (void) MR_setDefaultPersistentStore:(NSPersistentStore *) store; 22 | 23 | + (NSURL *) MR_urlForStoreName:(NSString *)storeFileName; 24 | + (NSURL *) MR_cloudURLForUbiqutiousContainer:(NSString *)bucketName; 25 | 26 | @end 27 | 28 | 29 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Core/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | // 2 | // MagicalRecord+ErrorHandling.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 3/6/12. 6 | // Copyright (c) 2012 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "MagicalRecord.h" 10 | 11 | @interface MagicalRecord (ErrorHandling) 12 | 13 | + (void) handleErrors:(NSError *)error; 14 | - (void) handleErrors:(NSError *)error; 15 | 16 | + (void) setErrorHandlerTarget:(id)target action:(SEL)action; 17 | + (SEL) errorHandlerAction; 18 | + (id) errorHandlerTarget; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Core/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | // 2 | // MagicalRecord+Setup.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 3/7/12. 6 | // Copyright (c) 2012 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "MagicalRecord.h" 10 | 11 | @interface MagicalRecord (Setup) 12 | 13 | + (void) setupCoreDataStack; 14 | + (void) setupCoreDataStackWithInMemoryStore; 15 | + (void) setupAutoMigratingCoreDataStack; 16 | 17 | + (void) setupCoreDataStackWithStoreNamed:(NSString *)storeName; 18 | + (void) setupCoreDataStackWithAutoMigratingSqliteStoreNamed:(NSString *)storeName; 19 | 20 | + (void) setupCoreDataStackWithStoreAtURL:(NSURL *)storeURL; 21 | + (void) setupCoreDataStackWithAutoMigratingSqliteStoreAtURL:(NSURL *)storeURL; 22 | 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // MagicalRecord+ShorthandSupport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 3/6/12. 6 | // Copyright (c) 2012 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "MagicalRecord.h" 10 | 11 | @interface MagicalRecord (ShorthandSupport) 12 | 13 | #ifdef MR_SHORTHAND 14 | + (void) swizzleShorthandMethods; 15 | #endif 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /vendor/MagicalRecord/Core/MagicalRecordDeprecated.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Tony Arnold on 10/04/2014. 3 | // Copyright (c) 2014 Magical Panda Software LLC. All rights reserved. 4 | // 5 | 6 | #define MR_DEPRECATED_WILL_BE_REMOVED_IN(VERSION) __attribute__((deprecated("This method has been deprecated and will be removed in MagicalRecord " VERSION "."))) 7 | #define MR_DEPRECATED_WILL_BE_REMOVED_IN_PLEASE_USE(VERSION, METHOD) __attribute__((deprecated("This method has been deprecated and will be removed in MagicalRecord " VERSION ". Please use `" METHOD "` instead."))) 8 | -------------------------------------------------------------------------------- /vendor/UZTextView/UZCursorView.h: -------------------------------------------------------------------------------- 1 | // 2 | // UZCursorView.h 3 | // UZTextView 4 | // 5 | // Created by sonson on 2013/07/19. 6 | // Copyright (c) 2013年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef enum _UZTextViewCursorDirection { 12 | UZTextViewUpCursor = 0, 13 | UZTextViewDownCursor = 1 14 | }UZTextViewCursorDirection; 15 | 16 | @interface UZCursorView : UIView { 17 | UZTextViewCursorDirection _direction; 18 | } 19 | - (id)initWithCursorDirection:(UZTextViewCursorDirection)direction; 20 | + (CGRect)cursorRectWithEdgeRect:(CGRect)rect cursorDirection:(UZTextViewCursorDirection)direction; 21 | @end 22 | -------------------------------------------------------------------------------- /vendor/UZTextView/UZLoupeView.h: -------------------------------------------------------------------------------- 1 | // 2 | // UZLoupeView.h 3 | // UZTextView 4 | // 5 | // Created by sonson on 2013/07/10. 6 | // Copyright (c) 2013年 sonson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UZLoupeView : UIView { 12 | CGFloat _loupeRadius; 13 | UIImage *_image; 14 | } 15 | - (id)initWithRadius:(CGFloat)radius; 16 | - (void)setVisible:(BOOL)visible animated:(BOOL)animated; 17 | - (void)updateAtLocation:(CGPoint)location textView:(UIView*)textView; 18 | @property (nonatomic, copy) UIColor *textViewBackgroundColor; 19 | @end 20 | --------------------------------------------------------------------------------