[Solved] Whats app share like ubar in android

That text is downloaded from the uber website link, that is set in the webpages meta data. <meta property=”og:title” content=”FREE UBER RIDE”> <meta property=”og:description” content=”Sign up now to claim your free gift from Sanjay (₹ 100 off first ride)*.”> solved Whats app share like ubar in android

[Solved] How do I capture screen view and share it? [closed]

You can add share button var shareButton: UIBarButtonItem = UIBarButtonItem(barButtonSystemItem: .Action, target: self, action: “shareButtonPressed:”) self.navigationItem.rightBarButtonItem = shareButton and populate share options func shareButtonPressed(sender: AnyObject) { NSLog(“shareButton pressed”) let stringtoshare: String = “This is a string to share” //add current screen shot image to share let imagetoshare = captureScreen() let activityItems: [AnyObject] = [stringtoshare, imagetoshare] … Read more

[Solved] Error PHP Twitter share [closed]

You either need to escape all of the single quotes in that string or don’t use PHP to output that code (recommended): <?php //some php code ?> <a href=”https://twitter.com/share” class=”twitter-share-button” data-via=”User” data-size=”large”>Tweet</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?”http’:’https’;if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+’://platform.twitter.com/widgets.js’;fjs.parentNode.insertBefore(js,fjs);}}(document, ‘script’, ‘twitter-wjs’);</script> <?php // more PHP code ?> Escaped quotes: <?php echo ‘<a href=”https://twitter.com/share” class=”twitter-share-button” data-via=”User” data-size=”large”>Tweet</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?\’http\’:\’https\’;if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+\’://platform.twitter.com/widgets.js\’;fjs.parentNode.insertBefore(js,fjs);}}(document, \’script\’, \’twitter-wjs\’);</script>’; … Read more