Version 1.0.11
This commit is contained in:
parent
b0ebfcd94b
commit
41bcc315fe
|
|
@ -1,11 +1,11 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = "CameraManager"
|
||||
s.version = "1.0.10"
|
||||
s.version = "1.0.11"
|
||||
s.summary = "This is a simple Swift class to provide all the configurations you need to create custom camera view in your app. Just drag, drop and use."
|
||||
s.homepage = "https://github.com/imaginary-cloud/CameraManager"
|
||||
s.license = 'MIT'
|
||||
s.author = { "nelanelanela" => "nterlecka@imaginarycloud.com" }
|
||||
s.source = { :git => "https://github.com/imaginary-cloud/CameraManager.git", :tag => "1.0.10" }
|
||||
s.source = { :git => "https://github.com/imaginary-cloud/CameraManager.git", :tag => "1.0.11" }
|
||||
s.social_media_url = 'http://www.imaginarycloud.com/'
|
||||
s.platform = :ios, '8.0'
|
||||
s.requires_arc = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
####Camera Manager
|
||||
|
||||
V1.0.10 (19-Mar-2015)
|
||||
V1.0.11 (20-Mar-2015)
|
||||
|
||||
####About
|
||||
This is a simple swift class to provide all the configurations you need to create custom camera view in your app.
|
||||
|
|
@ -57,6 +57,11 @@ You can specify if you want to save the files to phone library:
|
|||
CameraManager.sharedInstance.writeFilesToPhoneLibrary = true
|
||||
```
|
||||
|
||||
You can specify if you want the user to be asked about camera permissions automatically when you first try to use the camera or manually:
|
||||
```swift
|
||||
CameraManager.sharedInstance.showAccessPermissionPopupAutomatically = false
|
||||
```
|
||||
|
||||
You can even setUp your custom block to handle error messages:
|
||||
```swift
|
||||
CameraManager.sharedInstance.showErrorBlock = { (erTitle: String, erMessage: String) -> Void in
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -7,7 +7,7 @@
|
|||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.imaginarycloud.cameraManager166784567676879</string>
|
||||
<string></string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
|
|
|||
Loading…
Reference in New Issue