ResponseDetective is an open source Swift library from netguru that allows you to automatically intercept incoming and outgoing communication requests and view details of those requests for debugging. With a few lines of code you can add ResponseDetective and get networking request details in the console like in this example from the readme: <0x000000000badf00d> [REQUEST] […]
Category: Open Source iOS Libraries And Tools
SamuraiTransition is an open source Swift based library providing a collection of ViewController transitions featuring a number of neat “cutting” animations from hachinobu. SamuraiTransition is easy to implement, your view needs to subclass SamuraiViewController and can be implemented in code or in interface builder. SamuraiTransition features 9 transition animations, and you can customize the duration, […]
SwiftMonkey is an open source framework for randomly testing an apps user interface from Zalando. SwiftMonkey is ideal for avoiding unexpected issues with your apps user interface as it will stress test your app with touches and swipes. SwiftMonkey integrates with the Xcode UI testing framework and also allows you to visual the touches. This […]
Bluepill is an open source tool from LinkedIn for running iOS tests in parallel on multiple simulators with great reporting features, and extra reliability features. Bluepill runs tests in headless mode for less resource consumption, automatically retries when a simulator hangs or crashes, packs tests into groups automatically based on running time, generates reports after […]
Files is an open source Swift library from John Sundell for working with files ion iOS, macOS and tvOS. Files provides a straightforward object-oriented API for moving, deleting, reading, and writing files and folders. This snippet from the readme shows an example of file and folder deletion and creation: [cc] let folder = try Folder(path: […]
SwiftRichString is an open source library submitted by Daniele Margutti that simplifies working with attributed strings. With SwiftRichString you can style attributed strings using a clear type-safe syntax, combine attributed and non-attributed strings, and more. This snippet from the readme shows how one could create styles, and apply them to an attributed string with SwiftRichString: […]
GLTableCollectionView is an open source Swift based user interface component from Giulio for creating sliding views similar to those seen in Netflix, Airbnb and the App Store. GLTableCollectionView utilizes both UITableView and UICollectionView features cell recycling, headers for each table view and collection view row, storyboard compatibility and more. The table view, and each cell […]
SwiftyCam is an open source Swift library from Andrew Walz providing an inspired iOS camera framework with an extensive feature set inspired by Snapchat. SwiftyCam dramatically simplifies setting up an app for photo and video caprure. Some of the features of SwiftyCam include: – Video and image capturing – Front and rear flash – Retina […]
RhythmBox is an open source Swift library submitted by Manuel Escrig that simplifies the creation of rhythm patterns. To use RhythmBox you simply need to assign a beat, and an optional sub beat and time signature and RhythmBox will execute your code at the correct time intervals. There are also further subdivisions for different note […]
ODUIThreadGuard is an open source library from old donkey that helps you to make sure that your UI is not blocking the main thread. ODUIThreadGuard implements automatically when added into your project, and can be configured to run only in debug mode if desired. The features stated in the readme include: – Passive implementation – […]
PieCharts is an open source Swift 3.0 based library for creating beautiful animated and interactive pie charts from Ivan Schütz. PieCharts has a number of great features including: – Customizable slices – Add overlays using simple UIViews – Customizable legends with image support – Reusable components via extensible layer system – Autolayout support This image from […]
GDPerformanceView-Swift from Gavrilov Daniil is an open source component that allows you to display performance details of your app within the status bar. With GDPerformanceView you can display the frames per second rate, cpu usage, app version, and the iOS version at the top of your application. This is an image from the readme showing […]
LocalizationKit is an open source library submitted by William Powell that allows you to manage your translations and texts remotely without needing to resubmit to the app store. Localization Kit was created so you could quickly fix localization mistakes, and add other languages. LocalizationKit also provides a web-based tool for managing the translations that is […]
BFKit-Swift is a Swift helper library submitted by Fabrizio Brancati for developing apps faster. BFKit-Swift adds a number of helpers for common functionality including passwords, logging and sounds, dozens of helper functions for working with foundation many of which work on both iOS and Linux, and many more for working with user interfaces on iOS. […]
Traits from Krzysztof Zablocki is an open source library allowing you to modify the design and behavior of a native iOS app in real time from Xcode. With traits you can modify the design of your native apps in real time and see the changes without needing to re-compile. Both code and interface builder changes […]