The SLComposeViewController is a class in the [tag:Social-Framework] (new in iOS 6) that presents a view to the user to compose a post for supported social networking services.

learn more… | top users | synonyms

0
votes
0answers
9 views

Objective C - SLComposeViewController delayed presention

I've been doing a program which takes care of posting a picture or words (or both) to both facebook and twitter. But I want to do them both at the same time, so I wrote my code like this: //POST TO ...
0
votes
1answer
37 views

SLTwitterComposeViewController message sent to deallocated instance

I'm working on a cocos2d project on iOS6 and it crash time to time while I'm trying to share something on twitter. It only crashes on physical device (iOS 6.1.3) It runs without any problems on ...
0
votes
0answers
19 views

Twitter is not attaching image - iOS

I am working my app to implement twitter button. The code that I have implemented is as following. However, it is adding image on my twitter. I dont know why? However, it works perfectly once I ...
2
votes
1answer
46 views

getting the UITextView from SLComposeViewController when using SLServiceTypeFacebook

I am trying to get the UITextView of SLComposeViewController, how do I get it? I tried the following but it doesn't work: [viewController presentViewController:facebookController ...
0
votes
1answer
102 views

Facebook posts via some app in iPhone

I am using SLComposeViewController framework to create Facebook connectivity through iPhone app, to post feeds from my app to Facebook. However, i want to use a particular account for e.g. ...
1
vote
1answer
38 views

implement SLComposeViewController into Cocos2d

i can't seem to get the SLComposeViewController to come from a button on a cocos2D layer. If you could see anything that would stop this working please tell. Any help would be appreciated: N.B. ...
0
votes
0answers
26 views

multiple presentingViewController through SLComposeViewController gives no output

I am trying to update text on twitter as well as facebook. i took 2 SLComposeViewController - one for facebook and one for twitter. [self presentViewController:tweet animated:YES completion:Nil]; ...
4
votes
1answer
157 views

SLComposeViewController Views sent to back in app and becomes unresponsive

I have a button in my app to bring up an SLComposeViewController for use with Twitter. When the view is presented it animates in correctly and the disappears. I have found that when it disappears it ...
0
votes
2answers
74 views

how to check whether user entered his facebook details in iphone setting before composing SLComposeViewController in ios 6

i want to show a alert message before composing SLComposeViewController in my App , how to check whether user entered his facebook details in iphone setting before composing SLComposeViewController ...
2
votes
0answers
101 views

Get “Cannot Post To Facebook” with iOS SDK when using test account

When attempting to post using a Facebook generated test account from the app using the iOS 6 ,UIActivityViewController or SLComposeViewController I get the error popup message "Cannot Post To Facebook ...
0
votes
1answer
281 views

change “shared via iOS” to "shared via <AppName>

I am using a SLComposeViewController to post to facebook. However all of these posts have a "shared via iOS" tag instead of "shared via my app name". Any idea how to fix this? The stack overflow post ...
1
vote
0answers
72 views

Get the user submitted post / tweet using SLComposeViewController

Is there a way to get the user submitted comments upon posting to facebook / twitter when using SLComposeViewController? It seems the completion handler only allows access to the completion ...
0
votes
1answer
231 views

iOS 6 SLComposeViewController for SLServiceTypeTwitter not able to cancel, edit or send

I have some very simple code I am running in iOS 6, everything is working for all my devices and simulator, but one of my users (iPhone 3GS, iOS 6.1.2) is having issues. When they call this code the ...
0
votes
1answer
113 views

How to post to my Facebook wall without saving the image to a photo album

I'm using the following method to share an image and a url to the user's Facebook wall. The problem is that because I'm adding an image with the post it ends up being saved in a Facebook photo album. ...
0
votes
1answer
228 views

Issue with SLComposeViewController ,when app permission is disabled

Am using SLComposeViewController for posting articles to facebook wall.When App permission is turned off for facebook in device settings, SLComposeViewController still Works by posting article to ...
0
votes
0answers
129 views

ios 6.1 facebook groups hidden by keyboard when using SLComposeViewController

When I use SLComposeViewController with iOS 6.1 (in the simulator and on the device) to let my users post to facebook I get this bug: Open facebook dialog => choose Groups in the lower right corner ...
0
votes
0answers
88 views

Unable to dismiss Facebook SLComposeViewController

I have been unable to dismiss the Facebook SLComposeViewController after posting. Input is not passing through to the bottom screen and i'm not exactly sure why. The twitter version works fine when i ...
0
votes
0answers
46 views

How to decrease the height of the rows of the SLComposeViewController? iphone

I want to share some information on Facebook from my iPhone application and the default message that I set can't be seen entirely in the popup, so I want to decrease the height of the rows of the ...
0
votes
1answer
173 views

SLComposeViewController ,sharing not working

I use SLComposeViewController to share articles to facebook .This is the code i use to share articles using SLComposeViewController. SLComposeViewController ...
1
vote
2answers
493 views

Unable to post image into facebook using SLComposeViewController?

I would like to post image into facebook and twitter. I am fine with twitter but not with facebook using SLComposeViewController class. With out add image i am able to post text and url into facebook. ...
1
vote
1answer
116 views

SLComposeViewController returning null (ShareKit)

My SLComposeViewController is returning null whenever I try to call composeViewControllerForServiceType:serviceType on it. I can allocate it like: SLComposeViewController *test = ...
1
vote
1answer
596 views

How to get user info from twitter in ios 6?

I'm trying to integrate Ios 6 and twitter to send a tweet using slcomposeviewcontroller, but I cannot figure out how to get user info from twitter account. Can anybody help me?
0
votes
1answer
288 views

Unable to present View Controller (SLComposeViewController)

I'm trying to integrate Facebook on iOS6 for an iPad app and run into a problem: When the following code executes, the screen fades to dark (like when a modal controller appears) but then nothing ...
2
votes
1answer
150 views

Display Facebook Compose View after Twitter Compose View on iOS

I have an app where the user can choose to share an update with people via Twitter and Facebook, if they wish to share via both then things are tricky. If you try and call their ...
0
votes
1answer
138 views

stuck with Social frameworks on ios device

I cannot get social frameworks to function correctly on my ios device, however it functions perfectly in the iOS simulator but not on my iPad, can anyone advise on where I may have gone wrong. Thanks ...
1
vote
1answer
352 views

Can we share Video on FB using SLComposeViewController?

I have used SLComposeViewController to share image and url's as follows: SLComposeViewController *fbComposer = [SLComposeViewController ...
0
votes
0answers
166 views

Ask login details every time user wants to post on Facebook in iOS 6? (without login in from settings app)

I have an app that is NOT going on the app store and will be used in a much controlled environment with 'Guided access' enabled. Imagine it been used in an exhibition type environment where users can ...
0
votes
1answer
602 views

iOS 6 native Facebook/Twitter login info

I want to add Facebook/Twitter posting in my app using SLComposeViewController in iOS6 and I just want to add a check if the user is already logged in to Facebook/Twitter on device. So my question is ...
1
vote
1answer
269 views

SLComposeViewController on Twitter: how to detect duplicate post

I'm using Social Framework on iOS 6 for Twitter integration, using the following code : SLComposeViewController *controller = [SLComposeViewController ...
1
vote
0answers
147 views

How to make the presentViewController with SLComposeViewController faster?

I am opening the Twitter compose view on my app, but the screen takes too long to be displayed! I started using the following code when the user taps the twitter button: if([SLComposeViewController ...
1
vote
3answers
348 views

Prevent users from modifying part of the text in SLComposeViewController

Right now, our code is set to grab the text from the UITextField as setInitialText for Facebook/Twitter posts. What we want to do is: add an additional permanent message or URL to the ...
0
votes
0answers
501 views

How to display iOS 6 Facebook alert view without first showing SLComposeViewController

In iOS 6, when you create an SLComposeViewController and show it with presentViewController and you have not called isAvailableForServiceType first, you will get the "No Facebook Account" alert view ...
5
votes
1answer
531 views

SLComposeViewController dismisses differently for Facebook and Twitter?

I have some social sharing code that looks like this: SLComposeViewController *composer = [SLComposeViewController composeViewControllerForServiceType:…]; [composer setInitialText:…]; [composer ...
2
votes
1answer
355 views

SLComposeViewController with screenshot but not image attachment

I notice that Mobile Safari's Twitter and Facebook share adds a screenshot of the current page without actually sharing it, eg: Im trying to duplicate this via SLComposeViewController, however ...
1
vote
1answer
148 views

How to disable completion sounds from SLComposeViewController (Facebook, Twitter, …)?

Does anyone know how to disable the completion sounds of the SLComposeViewController in iOS? The sound is played after the user posted a message to e.g. Facebook or Twitter.
0
votes
0answers
190 views

Facebook Login For iOS6

I am using SLComposerview in my app for facebook which get the login information from setting app. My problem is that i want to put a check that if there is no login information present in setting app ...
0
votes
1answer
397 views

SLComposeViewController bind to app

If I use SLComposeViewController factory initializer method composeViewControllerForServiceType: and initialize it with Facebook service type, when posting to the Facebook wall, the post does not ...
0
votes
1answer
653 views

SLComposeViewController Facebook posts as iOS instead of Facebook Application Identifier

I'm currently working on a prototype for adding Facebook social features for future iOS games. One of the features I've been working on involves using the new native Facebook Composer to post to a ...
0
votes
0answers
446 views

iPhone , SLComposeViewController xcode 4.5

I have written this code: self.accountStore = [[ACAccountStore alloc]init]; ACAccountType *FBaccountType= [self.accountStore accountTypeWithAccountTypeIdentifier: ...
5
votes
4answers
930 views

isAvailableForServiceType always returns true?

Simple line of code: NSLog(@"Checking on Facebook: %d -- Checking on Twitter: %d",[SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook], [SLComposeViewController ...
3
votes
1answer
477 views

App Freezes after sending tweet

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 ...
0
votes
1answer
493 views

Closest iOS 5 compatible equivalent of SLComposeViewController?

In am using SLComposeViewController for posting on Facebook with iOS 6. In an effort to have a consistent user experience and save development time, are there any existing code snippets or libraries ...
0
votes
2answers
2k views

Facebook Integration With iOS6

I am using the following code to post something on Facebook. - (IBAction)post:(id)sender { if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) { mySocialComposer = ...
20
votes
2answers
13k views

Tutorial for SLComposeViewController sharing

What are the steps I need to follow to use iOS 6's new SLComposeViewController to post to Facebook, Twitter or Sina Weibo?