CyberSiARA™ | .iOS

IOS Integration Guideline

1.Go To SiaraShield-iOS and found the SiaraShield-iOS Library.

  • To Install the Cocoapod library follow the below steps:
  1. Use CocoaPods SiaraShield-iOS is available through CocoaPods To install it, simply add the following line to your Podfile:
  2. Add pod SiaraShield-iOS to your Podfile.
  3. Install the pod(s) by running pod install.
  4. Add import SiaraShield-iOS in the .swift files where you want to use it.
  • Also, for manually installation You can drag and drop the SiaraShield-iOS folder to your project.
  • Add your Public Key, Private Key and Request URL. Get your public & private key from mycybersiara.com
@IBOutlet weak var slideview: SlidingView!
slideview.getvalue(vc: self)
slideview.delegate = self
## Add SlidingDelegate method and do your code
once token verified on Submit Button Clicked delegate method called
extension ViewController : SlidingViewDelegate  {
func verifiedtoken() {
// <# Do your code here>
}
}