IOS Integration Guideline
1.Go To SiaraShield-iOS and found the SiaraShield-iOS Library.
- To Install the Cocoapod library follow the below steps:
- Use CocoaPods SiaraShield-iOS is available through CocoaPods To install it, simply add the following line to your Podfile:
- Add pod SiaraShield-iOS to your Podfile.
- Install the pod(s) by running pod install.
- 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 codeonce token verified on Submit Button Clicked delegate method called
extension ViewController : SlidingViewDelegate {
func verifiedtoken() {
// <# Do your code here>
}
}