Popularity
2.4
Stable
Activity
0.0
Stable
96
4
12

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: Unofficial     SDK    
Latest version: v1.1.0

RandomUserSwift alternatives and similar libraries

Based on the "Unofficial" category.
Alternatively, view RandomUserSwift alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of RandomUserSwift or a related project?

Add another 'Unofficial' Library

README

Build Status codecov doccov CocoaPods Version Status Carthage compatible Platform Swift MIT License

RandomUserSwift is an easy to use Swift framework that provides the ability to generate random users and their accompanying data for your Swift applications. It utilizes randomuser.me API to generate the data.

  1. Integration
  2. Usage
  3. License

Integration

CocoaPods

You can use CocoaPods to install RandomUserSwift by adding it to your Podfile:

target 'MyApp' do
    pod 'RandomUserSwift'
end

Carthage

You can use Carthage to install RandomUserSwift by adding it to your Cartfile:

github "dingwilson/RandomUserSwift"

Usage

Import the framework

import RandomUserSwift

Then, use the getUsers function via the shared singleton with a completion handler.

RandomUser.shared.getUsers { data, error in
    guard let data = data else { return }

    print(data)
}

For more information on the configuration and returned values, check out the RandomUserSwift documentation or RandomUser official documentation

License

RandomUserSwift is released under an MIT License. See LICENSE for details.

Copyright © 2016-present Wilson Ding.

Please provide attribution, it is greatly appreciated.


*Note that all licence references and agreements mentioned in the RandomUserSwift README section above are relevant to that project's source code only.