https://github.com/podkovyrin/deepl-ios
Unofficial DeepL iOS Client
https://github.com/podkovyrin/deepl-ios
deepl ios swift
Last synced: about 1 month ago
JSON representation
Unofficial DeepL iOS Client
- Host: GitHub
- URL: https://github.com/podkovyrin/deepl-ios
- Owner: podkovyrin
- License: mit
- Created: 2020-02-04T09:49:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-20T15:01:27.000Z (over 5 years ago)
- Last Synced: 2025-03-30T15:11:55.010Z (2 months ago)
- Topics: deepl, ios, swift
- Language: Swift
- Size: 282 KB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DeepL iOS Client
[](https://travis-ci.org/podkovyrin/DeepL-iOS) [](https://github.com/podkovyrin/DeepL-iOS/blob/master/LICENSE) [](https://github.com/podkovyrin/DeepL-iOS)
This is **not official** [DeepL](https://deepl.com) translator iOS app written in Swift.
![]()
## Features
- iPhone / iPad support, multitasking
- Gracefully handles all API errors
- Built-in retry with exponential timeout on network errors
- Testable architecture
- iOS 13 Dark Mode support
- Dynamic Type support
- Accessibility optimized (VoiceOver, etc.)## Getting Started
Just open `DeepL.xcodeproj` in Xcode.
## Requirements
- Xcode 11
- iOS 11 or later## Notes
DeepL API auth key is not provided with the source code. The app runs in demo mode using mocked server responses. For real use, set the auth key in `AppCoordinator.swift`.
## Implementation Details
The app is written with bare minimum dependencies. In fact, only one dependency is used: [ANOperations](https://github.com/podkovyrin/ANOperations) - a *homegrown* [Advanced Operations](https://developer.apple.com/videos/wwdc/2015/?id=226) implementation integrated as a Swift Package.
App architecture is based on a Coordinator pattern ([[1]](http://khanlou.com/2015/01/the-coordinator/), [[2]](http://khanlou.com/2015/10/coordinators-redux/), [[3]](https://davedelong.com/blog/tags/a-better-mvc/)).
Despite the fact that all UI is done in code, UIViewControllers are light and free of any business logic.
## License
*DeepL iOS* is available under the MIT license. See the LICENSE file for more info.