GithubHelp home page GithubHelp logo

vitor-otero / screenshotpreventing-ios Goto Github PK

View Code? Open in Web Editor NEW

This project forked from yoxisem544/screenshotpreventing-ios

0.0 0.0 0.0 3.79 MB

Prevent screenshot or screenrecording on iOS devices

License: MIT License

Ruby 5.88% Swift 94.12%

screenshotpreventing-ios's Introduction

ScreenshotPreventing

A simple wrapper view that is able to prevent screenshot or screen recording on iOS.

Requirement

iOS 12+.

SwiftUI will need iOS 13+.

Installation

Swift Package Manager

Swift Package Manager is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.

Xcode 11+ is required to build ScreenshotPreventing using Swift Package Manager.

To integrate ScreenshotPreventing into your Xcode project using Swift Package Manager, add it to the dependencies value of your Package.swift:

dependencies: [
    .package(url: "https://github.com/yoxisem544/ScreenshotPreventing.git", .upToNextMajor(from: "1.4.0"))
]

CocoaPods

For ScreenshotPreventing, use the following entry in your Podfile:

pod 'ScreenshotPreventing', '~> 1.4.0'
# or 
pod 'ScreenshotPreventing/RxSwift', '~> 1.4.0'
# or SwiftUI
pod 'ScreenshotPreventing/SwiftUI', '~> 1.4.0'

Demo Project

Clone this project, then

cd ScreenshotPreventing
# For normal demo
open Demo/Demo.xcodeproj
# For SwiftUI demo
open Demo-SwiftUI/Demo-SwiftUI.xcodeproj

Then build for any iOS simulator to test this out.

By triggering screenshot on simulator, look for Simulator > Device > Trigger Screenshot.

Example

You can wrap view you don't want to be screenshot inside ScreenshotPreventingView

import UIKit
import ScreenshotPreventing

class ViewController: UIViewController {

    let stack = UIStackView()
    let container = ScreenshotPreventingView(contentView: stack)

    override func viewDidLoad() {
        super.viewDidLoad()

        // add to subview here.
    }
}

Or you can setup content view later.

import UIKit
import ScreenshotPreventing

class ViewController: UIViewController {

    let stack = UIStackView()
    let container = ScreenshotPreventingView()

    override func viewDidLoad() {
        super.viewDidLoad()

        // add to subview here.
        container.setup(contentView: stack)
    }
}

SwiftUI Usage

Simply wrap your view inside ScreenshotPrevent View. You should pass in a isProtected binding to toggle on whether to prevent screenshot or not.

import SwiftUI
import ScreenshotPreventingSwiftUI

struct ContentView: View {

    @State private var preventScreenshot = false

    var body: some View {
        ScreenshotPrevent(isProtected: preventScreenshot) {
            Text("Hello")
                .padding()
                .background(Color.yellow)
                .cornerRadius(12)
        }
    }
}

or using view modifier extension

import SwiftUI
import ScreenshotPreventingSwiftUI

struct ContentView: View {

    @State private var preventScreenshot = false

    var body: some View {
        Text("Hello")
            .padding()
            .background(Color.yellow)
            .cornerRadius(12)
            .screenshotProtected(isProtected: preventScreenshot)
    }
}

RxSwift Extension

If you use RxSwift in your project, there is a Rx extension to drive preventScreenCapture property on ScreenshotPreventingView.

Use RxScreenshotPreventing package for this extension.

whetherOrNotToPreventScreenshotObservable
    .bind(to: screenshotPreventingView.rx.preventScreenCapture)
    .disposed(by: bag)

screenshotpreventing-ios's People

Contributors

yoxisem544 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.