Popularity
6.2
Stable
Activity
0.0
Stable
691
15
67

Code Quality Rank: L4
Programming language: Swift
License: MIT License
Tags: Permissions    

PAPermissions alternatives and similar libraries

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

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

Add another 'Permissions' Library

README

PAPermissions

PAPermissions is a fully customizable and ready-to-run library to handle permissions through a ViewController

Right now it supports out of the box permissions for:

  • Address Book
  • Bluetooth
  • Calendar
  • Camera
  • Contacts
  • Events
  • Location
  • Microphone
  • Motion Fitness
  • Notifications
  • Reminders
  • Custom

[](./ReadmeResources/PAPermissions1.gif) [](./ReadmeResources/PAPermissions2.gif) [](./ReadmeResources/PAPermissions3.gif)

Compatibility

PAPermissions requires iOS8+, compatible with both Swift 4 and Objective-C based projects

If you are looking for the Swift 2 version of it, please check out the legacy branch If you are looking for the Swift 3 version of it, please check out the legacy branch

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects.

To integrate PAPermissions into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'PAPermissions'

Then, run the following command:

$ pod install

Manual Installation

Just copy the PAPermissions folder in your project

Run the Example

Clone the repo, cd into Example:

$ pod install

Or open the project (the blue icon) and copy the PAPermissions folder inside.

Screenshots

It can be used with a plain background color [](./ReadmeResources/Screen1.png)

Or with a background image [](./ReadmeResources/Screen2.png)

How it works

Create a new UIViewController, inherit from PAPermissionsViewController and write:

    let microphoneCheck = PAMicrophonePermissionsCheck()
    let cameraCheck = PACameraPermissionsCheck()

    override func viewDidLoad() {
        super.viewDidLoad()

        //Custom settings
        self.locationCheck.requestAlwaysAuthorization = true


        let permissions = [
              PAPermissionsItem.itemForType(.microphone, reason: "Required to hear your beautiful voice")!,
                      PAPermissionsItem.itemForType(.camera, reason: "Required to shoot awesome photos")!]

        let handlers = [
                        PAPermissionsType.microphone.rawValue: self.microphoneCheck,
                        PAPermissionsType.camera.rawValue: self.cameraCheck]
        self.setupData(permissions, handlers: handlers)

        self.titleText = "My Awesome App"
        self.detailsText = "Please enable the following"
    }

That's it!

Anyway you no need to import everything, just remove the unnecessary "check" classes and keep the ones you want to use, you will find them in "Checks" folder.

Contacts

We would love to know if you are using PAPermissions in your app, send an email to [email protected]