This project is about managing permissions with the customizable visual effects. Beautiful dialog increases the chance of approval (which is important when we request notification). Simple control of this module saves you hours of development. You can start using this project with just two lines of code and easy customization!
Xcode 8 and Swift 3. Ready for use on iOS 8+
Drop in Sparrow
folder to your Xcode project (make sure to enable "Copy items if needed" and "Create groups").
Or via CocoaPods:
pod 'Sparrow/Modules/RequestPermission', :git => 'https://github.com/IvanVorobei/Sparrow.git’
Call SPRequestPermission
and choose type UI (for example: dialog/interactive
)
class ViewController: UIViewController {
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
SPRequestPermission.dialog.interactive.present(on: self, with: [.Camera])
}
}
If you want to know if you have received permission, you should call the function:
let isAvailableCamera = SPRequestPermission.isAllowPermission(.Camera)
Did you notice that when initialized the SPRequestPermission
- we chose the module (SPRequestPermission.dialog.interactive...
). You can choose an appropriate visual component. They all adapted to the iPad and iPhone for all screens and for all orientations (currently available dialog/interactive
and native
, but soon I will add number of presentations)
To track events associated with SPRequestPermission
, implement the protocol SPRequestPermissionEventsDelegate
and pass the delegate
SPRequestPermission.dialog.interactive.present(
on: self,
with: [.Camera],
delegate: self
)
If you want to change data in a particular module (for example, the text in the top footer) - you should implement a class supporting the protocol. For example, for module dialog/interactive
, you should implement the protocol SPRequestPermissionDialogInteractiveDataSourceInterface
. Then the class object needs to be passed to creator
SPRequestPermission.dialog.interactive.present(
on: self,
with: [.Camera],
dataSource: CustomDataSource()
)
Read more about customization data in wiki
For russian comunity: Я написал статью на Хабрахабр. Здесь вы найдете наглядное объяснение архитектуры проекта. Полезно, если собираетесь кастомизировать много функционала
UPD: Архитектура изменена, статья носит ознакомительный характер
Read wiki. If you can't find answer - contact me via email
I like the idea to specify applications that use the RequestPermission. Please, contact me via email (you can find it in the section "Contacts") so that I added app here
RequestPermission is released under the MIT license. Check LICENSE.md for details
In the project you can find my library Sparrow. It's a library, on which the module is written. Unfortunately, to save time in development, I wrote RequestPermission using this library. Don't worry, within just Swift files and a lot of useful things. Maybe you will like it:)
The project is fully free, I do not impose any restrictions on its use. I'm, just like you, want to do useful things. If you have a desire to help, tell friends about the project or donate. Thanks!