• Stars
    star
    855
  • Rank 51,182 (Top 2 %)
  • Language
    Swift
  • License
    MIT License
  • Created almost 9 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Make permission request easier.

Proposer

Proposer provides a single API to request permission for access Camera, Photos, Microphone, Contacts, Reminders, Calendar, Location or Notifications.

Requirements

Swift 4.2, iOS 9.0

(Swift 3, use version 1.1.0)

Example

Only one single API:

proposeToAccess(_:agreed:rejected:)

In real world:

import Proposer
@IBAction func choosePhoto() {
    let photos: PrivateResource = .photos
    let propose: Propose = {
        proposeToAccess(photos, agreed: {
            print("I can access Photos. :]\n")
            if UIImagePickerController.isSourceTypeAvailable(.savedPhotosAlbum) {
                let imagePicker = UIImagePickerController()
                imagePicker.sourceType = .savedPhotosAlbum
                self.present(imagePicker, animated: true, completion: nil)
            }
        }, rejected: {
            self.alertNoPermissionToAccess(photos)
        })
    }
    showProposeMessageIfNeedFor(photos, andTryPropose: propose)
}

When you want to get user's location, thanks to Swift's enum, you can even choose the usage mode:

@IBAction func shareLocation() {
    let location: PrivateResource = .location(.whenInUse)
    let propose: Propose = {
        proposeToAccess(location, agreed: {
            print("I can access Location. :]\n")
        }, rejected: {
            self.alertNoPermissionToAccess(location)
        })
    }
    showProposeMessageIfNeedFor(location, andTryPropose: propose)
}

Depending on your needs, you must add a NSLocationWhenInUseUsageDescription or NSLocationAlwaysUsageDescription to your Info.plist

See the demo for more information.

I recommend you add a UIViewController+Proposer.swift file (like the demo) for show localized alert before the first proposal or when propose failed.

Installation

Feel free to drag Proposer.swift to your iOS Project. But it's recommended to use Carthage (or CocoaPods).

Carthage

github "nixzhu/Proposer"

CocoaPods

pod 'Proposer'

Contact

NIX @nixzhu

License

Proposer is available under the MIT license. See the LICENSE file for more info.

More Repositories

1

dev-blog

翻译、开发心得或学习笔记
3,938
star
2

MonkeyKing

MonkeyKing helps you to post messages to Chinese Social Networks.
Swift
2,753
star
3

Coolie

Coolie(苦力) helps you to create models (& their constructors) from a JSON file.
Swift
507
star
4

KeyboardMan

KeyboardMan helps you to make keyboard animation.
Swift
351
star
5

Sensei

Sensei is a Mac app based on OpenAI API.
Swift
274
star
6

Baby

Create models from a JSON file, even a Baby can do it.
Swift
219
star
7

Wormhole

A more elegant way for message passing between iOS apps and extensions.
Swift
172
star
8

Bible-Assistant

Bible Assistant App
Objective-C
168
star
9

Ruler

Size matters, you need a ruler.
Swift
159
star
10

Navi

Focus on avatar caching.
Swift
115
star
11

AudioBot

AudioBot helps you do audio record & playback.
Swift
38
star
12

Redstone

Redstone has a State Machine
Swift
37
star
13

SharedBaby

Baby's web interface.
Swift
29
star
14

nixBoard

一块简易的围棋棋盘
JavaScript
25
star
15

HelloMou

The translation(Chinese) of Markdown Editor Mou's Hello.md
21
star
16

GentleTouch

Touch yourself, with WATCH.
Swift
19
star
17

Ananda

JSON model decoding based on yyjson.
Swift
16
star
18

AdaptiveChartDemo

Generate chart image from simple data, for WATCH
Swift
15
star
19

computation

Understanding Computation: From Simple Machines to Impossible Programs
Swift
14
star
20

AppClip

Create Web Clip for App.
Swift
14
star
21

rushGo

围棋急速入门,关于围棋的介绍,使对围棋感兴趣的人对围棋的规则有个快速了解。
12
star
22

nixhttpd

简易的http服务器以及测试环境
C
11
star
23

KeypathObserver

KeypathObserver helps you do KVO observing.
Swift
11
star
24

nixGoBoard

在iOS上实现的棋盘应用,可用于在生活中遇到某个围棋爱好者时,将iPad当做棋盘来一局,仅此而已。
Objective-C
11
star
25

SuperPreview

SuperPreview for Image Preview
Swift
8
star
26

AutoReview

AutoReview has a nice logic for show prompt of app review.
Swift
8
star
27

PropertyListenerDemo

Listen, they're changed!
Swift
7
star
28

MentionInUITextViewDemo

Detect mention in UITextView
Swift
7
star
29

algorithm-playgrounds

Try some algorithms
Swift
5
star
30

TextureDemo

Swift
5
star
31

AutoLayoutInUIScrollView

AutoLayout in UIScrollView Demo
Swift
5
star
32

StateMachineDemo

Simple State Machine Demo
Swift
5
star
33

coolie-cli

Coolie's command-line interface
Swift
5
star
34

WorkerBee

WorkerBee is a toolkit
Swift
4
star
35

CenterTwoViewsUseAutoLayout

AutoLayout Tip 1
Objective-C
4
star
36

42

The answer to life, the universe and everything.
3
star
37

NotificationCenterDemo

Swift
3
star
38

sgf2asy

转换sgf格式的围棋棋谱为asy矢量格式的脚本
Python
2
star
39

Girl

A HTML Parser
Swift
2
star
40

nixzhu.github.io

HTML
1
star
41

code-reading

Notes from code reading
1
star