SDK Highlights:
Backed Creator option from button click
				 
				 // Baked Launch method to launch creator module from camera screen
// Option to open Image or Video recording on camera screen
// Controller can be open from any button or bottom bar or load screen or any user interaction option
@IBAction func callToLaunchedBackedCreatorMethod(_ sender: Any) {
    self.navigationController?.pushViewController(
        GluedInCreator.shared.getCreatorCameraScreenBasedOn(
             creatorContentType: .video,
             delegate: self) ?? UIViewController(),
         animated: true)
 }
				 
				 
Baked Creator Option controller launch on Button click:
SDK class: GluedinCreator
methods: getCreatorOptionsScreen
didSelectCreatorOption()
Convenient to load baked creator option screen module → Creator camera module and its protocol callback methods.
                      
self.navigationController?.pushViewController(
   GluedInCreator.shared.getCreatorOptionsScreen(
      delegate: self) ?? UIViewController(),
            animated: true)
			
                    
Backed creator posting controller from a button click
SDK class: GluedinCreator
methods: callToLaunchedBackedContentPostingMethod
Convenient to load baked creator posting screen module.
	
	self.navigationController?.pushViewController(
     GluedInCreator.shared.getContentPostScreen(
          context: "context value",
          delegate: self) ?? UIViewController(),
     animated: true)
	
	
How to call ?
		 
		 // Baked Launch method to launch creator module from option screen from where user can decide whetear he can go for Image or Video
// Controller can be open from any button or bottom bar or load screen or any user interction option
@IBAction func callToLaunchedBackedContentPostingMethod(_ sender: Any) {
        self.navigationController?.pushViewController(
            GluedInCreator.shared.getContentPostScreen(
                context: "context value",
                delegate: self) ?? UIViewController(),
            animated: true)
 }
		 
		 
Post Content on other social media platform
Below are the method which get social posting callback, From here you can integrate the social platform where you wanted to send shared content:
		 
		 func contentSocialShare(contentURL: String, title: String, description: String, thumbnailImage: UIImage) {
        print(" contentSocialShare Method ")
    }
//  Parameters
- contentURL : Content(video) URL
- title: newly posted content title
- description: Newly posted content from discover
- thumbnailImage: Thumbnail image for the newly created content