Skip to content

Enables you to hide ur UIViews and make them screen/screen shot proof. objective c/c++ only

Notifications You must be signed in to change notification settings

Rednick16/SecureView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

SecureView

Enables you to hide ur UIViews and make them screen/screen shot proof. objective c/c++ only

Usage

UIWindow* mainWindow;

- (void) setup {
  mainWindow = [[UIApplication sharedApplication] windows].lastObject;

  SecureView *secureView = [SecureView new];
  secureView.frame = mainWindow.frame;
  [secureView setSecure:YES];
  [mainWindow addSubview:secureView];
}

based on: https://stackoverflow.com/questions/18680028/prevent-screen-capture-in-an-ios-app

About

Enables you to hide ur UIViews and make them screen/screen shot proof. objective c/c++ only

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published