Make your iOS apps development faster with this libraries (part 2)

hendy evan
bhinneka-tech
Published in
2 min readSep 22, 2022

6. Siren

Notify user when a new version of our apps available. Siren checks a user’s currently installed version of your iOS app against the version that is currently available in the App Store.

Siren can notify your app through alternative means, such as a custom user interface or using default alert.

7. SkeletonView

Do you want to apply shimmering effect when your apps is loading? You can achieve it easily using SkeletonView, an elegant way to show users that something is happening and also prepare them for which contents are waiting.

8. Swiftlint

Swiftlint is a tool to enforce Swift style and conventions. SwiftLint enforces the style guide rules that are generally accepted by the Swift community. These rules are well described in popular style guides like Ray Wenderlich’s Swift Style Guide. You can also use custom rules to use inside your internal team.

9. Nimble & Quick

Create unit testing easily without too much hustle with quick and nimble. Quick is a behavior-driven development framework for Swift and Objective-C. Quick comes together with Nimble — a matcher framework for your tests.

10. Localize-Swift

Use localization in your project with simple step using Localize-Swift. Localize-Swift is a simple framework that improves i18n and localization in Swift iOS apps — providing cleaner syntax and in-app language switching.

--

--