GitXplorerGitXplorer
j

JRNPrivacyChecker

public
10 stars
0 forks
1 issues

Commits

List of commits on branch master.
Unverified
f3bd802a34c8e20824ca12f9f1a56ac7584461ab

Added README.

jjarinosuke committed 11 years ago
Unverified
46df96c6a511ead3916d8c7f620d964aab58dce5

Changed default handler property name.

jjarinosuke committed 11 years ago
Unverified
cac5d0b0e00b3398494cd208baefb5f297b39fe6

added privacy check UI for demo.

jjarinosuke committed 11 years ago
Unverified
0735df3b4cf2b9fb886c39323d3a9f8107dc8fc0

Implemented check method.

jjarinosuke committed 11 years ago
Unverified
013b886f19117541dc9500df6d35fb54a24aea72

Implemented checking privacy method.

jjarinosuke committed 11 years ago
Unverified
7b4a506bbc296bdcbb9390582dd70119c107986c

initial commit.

jjarinosuke committed 11 years ago

README

The README file for this repository.

Requirements

  • iOS 6.0 or later.
  • ARC

Features

  • make easier and more uniformly for checking each iOS privacy settings.

Features to be implemented

  • request authorization for each privacy settings.
  • added new privacy settings in iOS 7.

Supporting privacy

  • Photos
  • AddressBook
  • Location
  • Event(Calendar, Remindars)
  • Social(Twitter, Facebook, SinaWeibo)
  • Ad Tracking
  • Microphone

Files

  • JRNPrivacyChecker/
    JRNPrivacyChecker files.

  • DemoApp/
    files for sample application which lists scheduled local notifications.

Usage

  • 1.Add files in JRNPrivacyChecker/ to your Xcode project.
  • 2.Import JRNPrivacyChecker.h
#import "JRNPrivacyChecker.h"
  • check Photo access.
[[JRNPrivacyChecker defaultChecker] checkPhotoAccess:^(ALAuthorizationStatus authorizationStatus) {
    //handling authorizationStatus
}];

Install

Using CocoaPods is the best way.

pod 'JRNPrivacyChecker'

I don't want to use CocoaPods.

OK, please D&D JRNPrivacyChecker folder into your project.

License

Copyright (c) 2013 Naoki Ishikawa

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.