Easy request permissions on iOS
Podfile
platform :ios, '11.0'
target 'ProjectName' do
use_frameworks!
pod 'KPermission'
end
pod install
.xcworkspace
that CocoaPods generatedimport KPermission
KPermission
source files and import them into your project.
KPermission.shared.view.show(view: self.view, types: [.camera, .photoLibrary], animation: .scale)
Permission types:
Usage is provided under the MIT License. See LICENSE for the full details.