slcomposeviewcontroller Questions
2
Solved
I'm simply doing so:
if let vc = SLComposeViewController(forServiceType: SLServiceTypeTwitter) {
vc.setInitialText("Tweet text")
vc.add(image)
present(vc, animated: true)
}
I've done this in ...
Gael asked 10/11, 2017 at 8:33
0
I have the code:
#import <Social/Social.h>
//...
//...
-(void)work {
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter]) {
SLComposeViewController *controller = ...
Spritsail asked 8/8, 2018 at 7:38
3
In my project, I always use SLComposeViewController to share contents with third-party apps, but now, when I update my iPhone to iOS 11 beta, this no longer works.
The SLComposeViewControllerCompl...
Fatal asked 3/7, 2017 at 7:18
5
Solved
What I am trying to do and it doesn't work is the following: post an image of my choise and also an url to facebook using the built in facebook sharer, the problem is that it doesn't work to upload...
Elyse asked 17/10, 2015 at 21:17
0
Following situation given:
iOS 8+ App (mainly Swift). StatusBar is set to View controller-based status bar appearance. Within the App multiple UIActivityViewControllers are used to display sharin...
Hhd asked 8/3, 2016 at 17:58
1
I have an image I took from the camera and saved to the /tmp folder.
When I add this image to the activityItems of an UIActivityViewController, and then press to share with either Twitter or Faceb...
Onslaught asked 25/2, 2015 at 21:20
2
The functionality of SLComposeViewController no longer works as expected with the newest Facebook iPhone app update as of April 24th. Any initial text specified is ignored, though the setInitialTex...
Backplate asked 1/6, 2015 at 9:54
2
The code snippet below is the callback for an on screen button. The Facebook sheet appears but contains no text. However, if you replace SLServiceTypeFacebook with SLServiceTypeTwitter it does show...
Pharr asked 29/4, 2015 at 12:4
5
Solved
I am using the SLComposeViewController to post to twitter and Facebook. I have the same code for both twitter & facebook but the URL is not showing up in the twitter post. How do I fix this?
...
Parker asked 11/9, 2013 at 14:44
0
I'm using the Social framework with XCode 7 beta / iOS 9 beta. The Facebook app is installed on the (physical) device, but in settings, no account is configured. According to the documentation:
...
Taphole asked 12/7, 2015 at 2:10
2
I'm trying to use the SLComposeViewController to share a link in my iOS App.
SLComposeViewController *controller = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFaceboo...
Phenacite asked 30/4, 2015 at 14:42
1
I have just noticed a problem in SLComposeViewController Facebook, no text is not to display inside, even official the Youtube application has this problem, do you have a solution?
Fivepenny asked 25/4, 2015 at 8:30
6
Solved
Seeing this error message in the logs, though not consistently, around the time that I use SLComposeViewController to open a Twitter or Facebook share sheet. I am not using any new iOS 8 API, just ...
Battledore asked 10/9, 2014 at 7:14
5
Solved
Simple line of code:
NSLog(@"Checking on Facebook: %d -- Checking on Twitter: %d",[SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook], [SLComposeViewController isAvailableFor...
Leckie asked 10/10, 2012 at 4:25
4
I'm trying to post an article title and an article URL to twitter and then append the app's name to the end of the tweet. So something like
"How to grow a cactus (via @appname)" attached URL
...
Unfathomable asked 4/11, 2013 at 4:34
1
Solved
I'm trying to implement a twitter post using IOS7 SLComposeViewController and I get the following error -
The Tweet "blah blah" cannot be sent because the connection to twitter failed.
I am i...
Fatness asked 14/11, 2013 at 15:55
3
Solved
I have some social sharing code that looks like this:
SLComposeViewController *composer = [SLComposeViewController composeViewControllerForServiceType:…];
[composer setInitialText:…];
[composer ad...
Palmitate asked 6/11, 2012 at 9:21
3
Solved
What are the steps I need to follow to use iOS 6's new SLComposeViewController to post to Facebook, Twitter or Sina Weibo?
Ruscher asked 19/9, 2012 at 21:37
1
Solved
Hi I have two UIButtons in an iOS app. One is to post to twitter the second is to post to Facebook. The facebook button works perfectly however the tweet is casing me some problems, the tweet sheet...
Pilotage asked 9/10, 2012 at 12:53
1
© 2022 - 2024 — McMap. All rights reserved.