├── .github └── workflows │ └── blank.yml ├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── likeNews.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── likeNews.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── likeNews ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon1024_1.png │ │ ├── AppIcon29_2.png │ │ ├── AppIcon29_3.png │ │ ├── AppIcon40_2.png │ │ ├── AppIcon40_3.png │ │ ├── AppIcon60_2.png │ │ ├── AppIcon60_3.png │ │ └── Contents.json │ ├── ArticleDetail │ │ ├── ArticleDetailBackButton.imageset │ │ │ ├── ArticleDetailBackButton.pdf │ │ │ └── Contents.json │ │ ├── ArticleDetailClipOffButton.imageset │ │ │ ├── ArticleDetailClipOffButton.pdf │ │ │ └── Contents.json │ │ ├── ArticleDetailClipOnButton.imageset │ │ │ ├── ArticleDetailClipOnButton.pdf │ │ │ └── Contents.json │ │ ├── ArticleDetailShareButton.imageset │ │ │ ├── ArticleDetailShareButton.pdf │ │ │ └── Contents.json │ │ ├── ArticleDetailShareOpenSafari.imageset │ │ │ ├── ArticleDetailShareOpenSafari.pdf │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Common │ │ ├── CommonArticlePlaceholder.imageset │ │ │ ├── CommonArticlePlaceholder.pdf │ │ │ └── Contents.json │ │ ├── CommonNavigationTitle.imageset │ │ │ ├── CommonNavigationTitle.pdf │ │ │ └── Contents.json │ │ ├── CommonSpeechStop.imageset │ │ │ ├── CommonSpeechStop.pdf │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Contents.json │ ├── Etc │ │ ├── Contents.json │ │ ├── EtcCacheClear.imageset │ │ │ ├── Contents.json │ │ │ └── EtcCacheClear.pdf │ │ ├── EtcDispArticleNum.imageset │ │ │ ├── Contents.json │ │ │ └── EtcDispArticleNum.pdf │ │ ├── EtcDispThumbnail.imageset │ │ │ ├── Contents.json │ │ │ └── EtcDispThumbnail.pdf │ │ ├── EtcInquiry.imageset │ │ │ ├── Contents.json │ │ │ └── EtcInquiry.pdf │ │ ├── EtcNextPage.imageset │ │ │ ├── Contents.json │ │ │ └── EtcNextPage.pdf │ │ └── EtcSpeech.imageset │ │ │ ├── Contents.json │ │ │ └── EtcSpeech.pdf │ ├── LaunchScreen │ │ ├── Contents.json │ │ └── LaunchScreenLogo.imageset │ │ │ ├── Contents.json │ │ │ └── LaunchScreenLogo.pdf │ ├── NewsClip │ │ ├── Contents.json │ │ └── NewsClipNonArticle.imageset │ │ │ ├── Contents.json │ │ │ └── NewsClipNonArticle.pdf │ ├── NewsSearch │ │ ├── Contents.json │ │ └── NewsSearchNonArticle.imageset │ │ │ ├── Contents.json │ │ │ └── NewsSearchNonArticle.pdf │ ├── NewsTop │ │ ├── Contents.json │ │ ├── NewsTopTabClip.imageset │ │ │ ├── Contents.json │ │ │ └── NewsTopTabClip.pdf │ │ ├── NewsTopTabEtc.imageset │ │ │ ├── Contents.json │ │ │ └── NewsTopTabEtc.pdf │ │ ├── NewsTopTabList.imageset │ │ │ ├── Contents.json │ │ │ └── NewsTopTabList.pdf │ │ └── NewsTopTabSearch.imageset │ │ │ ├── Contents.json │ │ │ └── NewsTopTabSearch.pdf │ ├── Speech │ │ ├── Contents.json │ │ ├── SpeechHigh.imageset │ │ │ ├── Contents.json │ │ │ └── SpeechHigh.pdf │ │ ├── SpeechLow.imageset │ │ │ ├── Contents.json │ │ │ └── SpeechRow.pdf │ │ ├── SpeechQuick.imageset │ │ │ ├── Contents.json │ │ │ └── SpeechQuick.pdf │ │ └── SpeechSlow.imageset │ │ │ ├── Contents.json │ │ │ └── SpeechSlow.pdf │ └── Weather │ │ ├── Contents.json │ │ ├── WeatherBrokenCloudsDay.imageset │ │ ├── Contents.json │ │ └── WeatherBrokenCloudsDay.pdf │ │ ├── WeatherBrokenCloudsNight.imageset │ │ ├── Contents.json │ │ └── WeatherBrokenCloudsNight.pdf │ │ ├── WeatherClearSkyDay.imageset │ │ ├── Contents.json │ │ └── WeatherClearSkyDay.pdf │ │ ├── WeatherClearSkyNight.imageset │ │ ├── Contents.json │ │ └── WeatherClearSkyNight.pdf │ │ ├── WeatherFewCloudsDay.imageset │ │ ├── Contents.json │ │ └── WeatherFewCloudsDay.pdf │ │ ├── WeatherFewCloudsNight.imageset │ │ ├── Contents.json │ │ └── WeatherFewCloudsNight.pdf │ │ ├── WeatherMistDay.imageset │ │ ├── Contents.json │ │ └── WeatherMistDay.pdf │ │ ├── WeatherMistNight.imageset │ │ ├── Contents.json │ │ └── WeatherMistNight.pdf │ │ ├── WeatherRainDay.imageset │ │ ├── Contents.json │ │ └── WeatherRainDay.pdf │ │ ├── WeatherRainNight.imageset │ │ ├── Contents.json │ │ └── WeatherRainNight.pdf │ │ ├── WeatherScatteredCloudsDay.imageset │ │ ├── Contents.json │ │ └── WeatherScatteredCloudsDay.pdf │ │ ├── WeatherScatteredCloudsNight.imageset │ │ ├── Contents.json │ │ └── WeatherScatteredCloudsNight.pdf │ │ ├── WeatherShowerRainDay.imageset │ │ ├── Contents.json │ │ └── WeatherShowerRainDay.pdf │ │ ├── WeatherShowerRainNight.imageset │ │ ├── Contents.json │ │ └── WeatherShowerRainNight.pdf │ │ ├── WeatherSnowDay.imageset │ │ ├── Contents.json │ │ └── WeatherSnowDay.pdf │ │ ├── WeatherSnowNight.imageset │ │ ├── Contents.json │ │ └── WeatherSnowNight.pdf │ │ ├── WeatherThunderstormDay.imageset │ │ ├── Contents.json │ │ └── WeatherThunderstormDay.pdf │ │ └── WeatherThunderstormNight.imageset │ │ ├── Contents.json │ │ └── WeatherThunderstormNight.pdf ├── Extension │ ├── Array+.swift │ ├── Bundle+.swift │ ├── CGRect+.swift │ ├── Collection+.swift │ ├── Date+.swift │ ├── DispatchQueue+.swift │ ├── ExclusiveTouch+.swift │ ├── Int+.swift │ ├── String+.swift │ ├── UIApplication+.swift │ ├── UICollectionView+.swift │ ├── UIColor+.swift │ ├── UIImageView+.swift │ ├── UIStoryboard+.swift │ ├── UITableView+.swift │ ├── UIView+.swift │ └── UserDefaults+.swift ├── Framework │ └── Realm │ │ └── RLMSupport.swift ├── GoogleService-Info.plist ├── Info.plist ├── Model │ ├── ActivityOpenSafari.swift │ ├── ApiModel.swift │ ├── FirebaseAnalyticsModel.swift │ ├── NewsListModel.swift │ ├── NewsListType.swift │ ├── SpeechModel.swift │ ├── TArticle.swift │ └── WeatherModel.swift ├── R.generated.swift ├── Resources │ └── Localizable.strings ├── View │ ├── ArticleDetail │ │ └── ArticleDetailViewController.swift │ ├── Common │ │ ├── NavigationTitleView.swift │ │ └── NavigationTitleView.xib │ ├── Etc │ │ ├── EtcCell.swift │ │ ├── EtcCell.xib │ │ ├── EtcCellViewModel.swift │ │ ├── EtcViewController.swift │ │ ├── EtcViewModel.swift │ │ ├── EtcWeatherCell.swift │ │ ├── EtcWeatherCell.xib │ │ └── EtcWeatherCellViewModel.swift │ ├── NewsClip │ │ ├── NewsClipViewController.swift │ │ └── NewsClipViewModel.swift │ ├── NewsList │ │ └── Cell │ │ │ ├── NewsListCell.swift │ │ │ ├── NewsListCell.xib │ │ │ └── NewsListCellViewModel.swift │ ├── NewsSearch │ │ ├── NewsSearchViewController.swift │ │ └── NewsSearchViewModel.swift │ ├── NewsTop │ │ ├── NewsTopTabBarController.swift │ │ └── NewsTopTabBarViewModel.swift │ ├── Speech │ │ ├── SpeechSettingViewController.swift │ │ └── SpeechSettingViewModel.swift │ ├── Storyboard │ │ ├── ArticleDetail.storyboard │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Etc.storyboard │ │ ├── NewsClip.storyboard │ │ ├── NewsSearch.storyboard │ │ ├── NewsTop.storyboard │ │ └── SpeechSetting.storyboard │ └── Tab │ │ ├── MainCollectionViewCell.swift │ │ ├── MainCollectionViewCell.xib │ │ ├── MainCollectionViewCellViewModel.swift │ │ ├── SegmentCollectionViewCell.swift │ │ ├── SegmentCollectionViewCell.xib │ │ ├── SegmentCollectionViewCellViewModel.swift │ │ ├── UpTabViewController.storyboard │ │ ├── UpTabViewController.swift │ │ └── UpTabViewControllerViewModel.swift └── likeNews.entitlements ├── likeNewsTests ├── Info.plist └── likeNewsTests.swift └── likeNewsUITests ├── Info.plist └── likeNewsUITests.swift /.github/workflows/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/.github/workflows/blank.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/README.md -------------------------------------------------------------------------------- /likeNews.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /likeNews.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /likeNews.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /likeNews.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /likeNews.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /likeNews/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/AppDelegate.swift -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon1024_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon1024_1.png -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon29_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon29_2.png -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon29_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon29_3.png -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon40_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon40_2.png -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon40_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon40_3.png -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon60_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon60_2.png -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon60_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/AppIcon.appiconset/AppIcon60_3.png -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailBackButton.imageset/ArticleDetailBackButton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailBackButton.imageset/ArticleDetailBackButton.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailBackButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailBackButton.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailClipOffButton.imageset/ArticleDetailClipOffButton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailClipOffButton.imageset/ArticleDetailClipOffButton.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailClipOffButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailClipOffButton.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailClipOnButton.imageset/ArticleDetailClipOnButton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailClipOnButton.imageset/ArticleDetailClipOnButton.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailClipOnButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailClipOnButton.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailShareButton.imageset/ArticleDetailShareButton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailShareButton.imageset/ArticleDetailShareButton.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailShareButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailShareButton.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailShareOpenSafari.imageset/ArticleDetailShareOpenSafari.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailShareOpenSafari.imageset/ArticleDetailShareOpenSafari.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/ArticleDetailShareOpenSafari.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/ArticleDetailShareOpenSafari.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/ArticleDetail/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/ArticleDetail/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Common/CommonArticlePlaceholder.imageset/CommonArticlePlaceholder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Common/CommonArticlePlaceholder.imageset/CommonArticlePlaceholder.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Common/CommonArticlePlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Common/CommonArticlePlaceholder.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Common/CommonNavigationTitle.imageset/CommonNavigationTitle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Common/CommonNavigationTitle.imageset/CommonNavigationTitle.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Common/CommonNavigationTitle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Common/CommonNavigationTitle.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Common/CommonSpeechStop.imageset/CommonSpeechStop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Common/CommonSpeechStop.imageset/CommonSpeechStop.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Common/CommonSpeechStop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Common/CommonSpeechStop.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Common/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Common/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcCacheClear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcCacheClear.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcCacheClear.imageset/EtcCacheClear.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcCacheClear.imageset/EtcCacheClear.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcDispArticleNum.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcDispArticleNum.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcDispArticleNum.imageset/EtcDispArticleNum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcDispArticleNum.imageset/EtcDispArticleNum.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcDispThumbnail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcDispThumbnail.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcDispThumbnail.imageset/EtcDispThumbnail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcDispThumbnail.imageset/EtcDispThumbnail.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcInquiry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcInquiry.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcInquiry.imageset/EtcInquiry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcInquiry.imageset/EtcInquiry.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcNextPage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcNextPage.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcNextPage.imageset/EtcNextPage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcNextPage.imageset/EtcNextPage.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcSpeech.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcSpeech.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Etc/EtcSpeech.imageset/EtcSpeech.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Etc/EtcSpeech.imageset/EtcSpeech.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/LaunchScreen/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/LaunchScreen/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/LaunchScreen/LaunchScreenLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/LaunchScreen/LaunchScreenLogo.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/LaunchScreen/LaunchScreenLogo.imageset/LaunchScreenLogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/LaunchScreen/LaunchScreenLogo.imageset/LaunchScreenLogo.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsClip/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsClip/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsClip/NewsClipNonArticle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsClip/NewsClipNonArticle.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsClip/NewsClipNonArticle.imageset/NewsClipNonArticle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsClip/NewsClipNonArticle.imageset/NewsClipNonArticle.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsSearch/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsSearch/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsSearch/NewsSearchNonArticle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsSearch/NewsSearchNonArticle.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsSearch/NewsSearchNonArticle.imageset/NewsSearchNonArticle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsSearch/NewsSearchNonArticle.imageset/NewsSearchNonArticle.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/NewsTopTabClip.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/NewsTopTabClip.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/NewsTopTabClip.imageset/NewsTopTabClip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/NewsTopTabClip.imageset/NewsTopTabClip.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/NewsTopTabEtc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/NewsTopTabEtc.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/NewsTopTabEtc.imageset/NewsTopTabEtc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/NewsTopTabEtc.imageset/NewsTopTabEtc.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/NewsTopTabList.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/NewsTopTabList.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/NewsTopTabList.imageset/NewsTopTabList.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/NewsTopTabList.imageset/NewsTopTabList.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/NewsTopTabSearch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/NewsTopTabSearch.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/NewsTop/NewsTopTabSearch.imageset/NewsTopTabSearch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/NewsTop/NewsTopTabSearch.imageset/NewsTopTabSearch.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/SpeechHigh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/SpeechHigh.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/SpeechHigh.imageset/SpeechHigh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/SpeechHigh.imageset/SpeechHigh.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/SpeechLow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/SpeechLow.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/SpeechLow.imageset/SpeechRow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/SpeechLow.imageset/SpeechRow.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/SpeechQuick.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/SpeechQuick.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/SpeechQuick.imageset/SpeechQuick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/SpeechQuick.imageset/SpeechQuick.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/SpeechSlow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/SpeechSlow.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Speech/SpeechSlow.imageset/SpeechSlow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Speech/SpeechSlow.imageset/SpeechSlow.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherBrokenCloudsDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherBrokenCloudsDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherBrokenCloudsDay.imageset/WeatherBrokenCloudsDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherBrokenCloudsDay.imageset/WeatherBrokenCloudsDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherBrokenCloudsNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherBrokenCloudsNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherBrokenCloudsNight.imageset/WeatherBrokenCloudsNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherBrokenCloudsNight.imageset/WeatherBrokenCloudsNight.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherClearSkyDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherClearSkyDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherClearSkyDay.imageset/WeatherClearSkyDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherClearSkyDay.imageset/WeatherClearSkyDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherClearSkyNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherClearSkyNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherClearSkyNight.imageset/WeatherClearSkyNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherClearSkyNight.imageset/WeatherClearSkyNight.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherFewCloudsDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherFewCloudsDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherFewCloudsDay.imageset/WeatherFewCloudsDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherFewCloudsDay.imageset/WeatherFewCloudsDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherFewCloudsNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherFewCloudsNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherFewCloudsNight.imageset/WeatherFewCloudsNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherFewCloudsNight.imageset/WeatherFewCloudsNight.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherMistDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherMistDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherMistDay.imageset/WeatherMistDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherMistDay.imageset/WeatherMistDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherMistNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherMistNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherMistNight.imageset/WeatherMistNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherMistNight.imageset/WeatherMistNight.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherRainDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherRainDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherRainDay.imageset/WeatherRainDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherRainDay.imageset/WeatherRainDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherRainNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherRainNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherRainNight.imageset/WeatherRainNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherRainNight.imageset/WeatherRainNight.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherScatteredCloudsDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherScatteredCloudsDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherScatteredCloudsDay.imageset/WeatherScatteredCloudsDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherScatteredCloudsDay.imageset/WeatherScatteredCloudsDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherScatteredCloudsNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherScatteredCloudsNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherScatteredCloudsNight.imageset/WeatherScatteredCloudsNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherScatteredCloudsNight.imageset/WeatherScatteredCloudsNight.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherShowerRainDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherShowerRainDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherShowerRainDay.imageset/WeatherShowerRainDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherShowerRainDay.imageset/WeatherShowerRainDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherShowerRainNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherShowerRainNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherShowerRainNight.imageset/WeatherShowerRainNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherShowerRainNight.imageset/WeatherShowerRainNight.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherSnowDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherSnowDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherSnowDay.imageset/WeatherSnowDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherSnowDay.imageset/WeatherSnowDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherSnowNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherSnowNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherSnowNight.imageset/WeatherSnowNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherSnowNight.imageset/WeatherSnowNight.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherThunderstormDay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherThunderstormDay.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherThunderstormDay.imageset/WeatherThunderstormDay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherThunderstormDay.imageset/WeatherThunderstormDay.pdf -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherThunderstormNight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherThunderstormNight.imageset/Contents.json -------------------------------------------------------------------------------- /likeNews/Assets.xcassets/Weather/WeatherThunderstormNight.imageset/WeatherThunderstormNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Assets.xcassets/Weather/WeatherThunderstormNight.imageset/WeatherThunderstormNight.pdf -------------------------------------------------------------------------------- /likeNews/Extension/Array+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/Array+.swift -------------------------------------------------------------------------------- /likeNews/Extension/Bundle+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/Bundle+.swift -------------------------------------------------------------------------------- /likeNews/Extension/CGRect+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/CGRect+.swift -------------------------------------------------------------------------------- /likeNews/Extension/Collection+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/Collection+.swift -------------------------------------------------------------------------------- /likeNews/Extension/Date+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/Date+.swift -------------------------------------------------------------------------------- /likeNews/Extension/DispatchQueue+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/DispatchQueue+.swift -------------------------------------------------------------------------------- /likeNews/Extension/ExclusiveTouch+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/ExclusiveTouch+.swift -------------------------------------------------------------------------------- /likeNews/Extension/Int+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/Int+.swift -------------------------------------------------------------------------------- /likeNews/Extension/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/String+.swift -------------------------------------------------------------------------------- /likeNews/Extension/UIApplication+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/UIApplication+.swift -------------------------------------------------------------------------------- /likeNews/Extension/UICollectionView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/UICollectionView+.swift -------------------------------------------------------------------------------- /likeNews/Extension/UIColor+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/UIColor+.swift -------------------------------------------------------------------------------- /likeNews/Extension/UIImageView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/UIImageView+.swift -------------------------------------------------------------------------------- /likeNews/Extension/UIStoryboard+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/UIStoryboard+.swift -------------------------------------------------------------------------------- /likeNews/Extension/UITableView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/UITableView+.swift -------------------------------------------------------------------------------- /likeNews/Extension/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/UIView+.swift -------------------------------------------------------------------------------- /likeNews/Extension/UserDefaults+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Extension/UserDefaults+.swift -------------------------------------------------------------------------------- /likeNews/Framework/Realm/RLMSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Framework/Realm/RLMSupport.swift -------------------------------------------------------------------------------- /likeNews/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/GoogleService-Info.plist -------------------------------------------------------------------------------- /likeNews/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Info.plist -------------------------------------------------------------------------------- /likeNews/Model/ActivityOpenSafari.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Model/ActivityOpenSafari.swift -------------------------------------------------------------------------------- /likeNews/Model/ApiModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Model/ApiModel.swift -------------------------------------------------------------------------------- /likeNews/Model/FirebaseAnalyticsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Model/FirebaseAnalyticsModel.swift -------------------------------------------------------------------------------- /likeNews/Model/NewsListModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Model/NewsListModel.swift -------------------------------------------------------------------------------- /likeNews/Model/NewsListType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Model/NewsListType.swift -------------------------------------------------------------------------------- /likeNews/Model/SpeechModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Model/SpeechModel.swift -------------------------------------------------------------------------------- /likeNews/Model/TArticle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Model/TArticle.swift -------------------------------------------------------------------------------- /likeNews/Model/WeatherModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Model/WeatherModel.swift -------------------------------------------------------------------------------- /likeNews/R.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/R.generated.swift -------------------------------------------------------------------------------- /likeNews/Resources/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/Resources/Localizable.strings -------------------------------------------------------------------------------- /likeNews/View/ArticleDetail/ArticleDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/ArticleDetail/ArticleDetailViewController.swift -------------------------------------------------------------------------------- /likeNews/View/Common/NavigationTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Common/NavigationTitleView.swift -------------------------------------------------------------------------------- /likeNews/View/Common/NavigationTitleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Common/NavigationTitleView.xib -------------------------------------------------------------------------------- /likeNews/View/Etc/EtcCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Etc/EtcCell.swift -------------------------------------------------------------------------------- /likeNews/View/Etc/EtcCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Etc/EtcCell.xib -------------------------------------------------------------------------------- /likeNews/View/Etc/EtcCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Etc/EtcCellViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/Etc/EtcViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Etc/EtcViewController.swift -------------------------------------------------------------------------------- /likeNews/View/Etc/EtcViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Etc/EtcViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/Etc/EtcWeatherCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Etc/EtcWeatherCell.swift -------------------------------------------------------------------------------- /likeNews/View/Etc/EtcWeatherCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Etc/EtcWeatherCell.xib -------------------------------------------------------------------------------- /likeNews/View/Etc/EtcWeatherCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Etc/EtcWeatherCellViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/NewsClip/NewsClipViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsClip/NewsClipViewController.swift -------------------------------------------------------------------------------- /likeNews/View/NewsClip/NewsClipViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsClip/NewsClipViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/NewsList/Cell/NewsListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsList/Cell/NewsListCell.swift -------------------------------------------------------------------------------- /likeNews/View/NewsList/Cell/NewsListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsList/Cell/NewsListCell.xib -------------------------------------------------------------------------------- /likeNews/View/NewsList/Cell/NewsListCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsList/Cell/NewsListCellViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/NewsSearch/NewsSearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsSearch/NewsSearchViewController.swift -------------------------------------------------------------------------------- /likeNews/View/NewsSearch/NewsSearchViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsSearch/NewsSearchViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/NewsTop/NewsTopTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsTop/NewsTopTabBarController.swift -------------------------------------------------------------------------------- /likeNews/View/NewsTop/NewsTopTabBarViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/NewsTop/NewsTopTabBarViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/Speech/SpeechSettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Speech/SpeechSettingViewController.swift -------------------------------------------------------------------------------- /likeNews/View/Speech/SpeechSettingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Speech/SpeechSettingViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/Storyboard/ArticleDetail.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Storyboard/ArticleDetail.storyboard -------------------------------------------------------------------------------- /likeNews/View/Storyboard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Storyboard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /likeNews/View/Storyboard/Etc.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Storyboard/Etc.storyboard -------------------------------------------------------------------------------- /likeNews/View/Storyboard/NewsClip.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Storyboard/NewsClip.storyboard -------------------------------------------------------------------------------- /likeNews/View/Storyboard/NewsSearch.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Storyboard/NewsSearch.storyboard -------------------------------------------------------------------------------- /likeNews/View/Storyboard/NewsTop.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Storyboard/NewsTop.storyboard -------------------------------------------------------------------------------- /likeNews/View/Storyboard/SpeechSetting.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Storyboard/SpeechSetting.storyboard -------------------------------------------------------------------------------- /likeNews/View/Tab/MainCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/MainCollectionViewCell.swift -------------------------------------------------------------------------------- /likeNews/View/Tab/MainCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/MainCollectionViewCell.xib -------------------------------------------------------------------------------- /likeNews/View/Tab/MainCollectionViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/MainCollectionViewCellViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/Tab/SegmentCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/SegmentCollectionViewCell.swift -------------------------------------------------------------------------------- /likeNews/View/Tab/SegmentCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/SegmentCollectionViewCell.xib -------------------------------------------------------------------------------- /likeNews/View/Tab/SegmentCollectionViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/SegmentCollectionViewCellViewModel.swift -------------------------------------------------------------------------------- /likeNews/View/Tab/UpTabViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/UpTabViewController.storyboard -------------------------------------------------------------------------------- /likeNews/View/Tab/UpTabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/UpTabViewController.swift -------------------------------------------------------------------------------- /likeNews/View/Tab/UpTabViewControllerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/View/Tab/UpTabViewControllerViewModel.swift -------------------------------------------------------------------------------- /likeNews/likeNews.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNews/likeNews.entitlements -------------------------------------------------------------------------------- /likeNewsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNewsTests/Info.plist -------------------------------------------------------------------------------- /likeNewsTests/likeNewsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNewsTests/likeNewsTests.swift -------------------------------------------------------------------------------- /likeNewsUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNewsUITests/Info.plist -------------------------------------------------------------------------------- /likeNewsUITests/likeNewsUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyutaMiyamoto/Innovy/HEAD/likeNewsUITests/likeNewsUITests.swift --------------------------------------------------------------------------------