The Social Framework allows you to integrate social networking services with your application on both iOS 6 and OS X 10.8 Mountain Lion. Using the Social Framework you can create requests for social information for the current user, or post to their accounts.

learn more… | top users | synonyms

1
vote
1answer
22 views

iOS6 Social framework: posting to multiple networks without the UI

In my app, I'm looking to allow my users to post a single status to both Facebook and Twitter. I've got my own compose window, so I'd like to avoid using the built-in SLComposeViewController, since ...
0
votes
2answers
24 views

ShareKit Social.framework issue

I want to use ShareKit but I got this error: dyld: Library not loaded: /System/Library/Frameworks/Social.framework/Social Referenced from: /Users/developer/Library/Application Support/iPhone ...
1
vote
0answers
49 views

Is there a way to force Webview to login to Facebook using the native iOS 6 Facebook Credentials

I have a question regarding the facebook Comments using social Plugin on iOS6. I use social Framework to login into my app using facebook credentials set in the phone settings. Facebook loads the ...
0
votes
0answers
19 views

Facebook thumbnail not generated objective c

When we post a url in the Facebook (update status), it generates a small version (with thumbnail and text) of the url and allows to add it to your post as a pin. I want this exact same feature in ...
0
votes
1answer
23 views

When I use Post Notification then cancel button of Social framework don't hide Controller but hides alert

I am using social framework for sharing purposes.In IBAction of share Button I post a notification.But when i press cancel button of alert of Settings of particular social networking site then alert ...
-1
votes
0answers
22 views

How to login to a social service from our application using Social framework ios?

I am developing an application in which I have integrated social framework. In the code, I am checking whether the particular service is available or not. If the service is not available I am just ...
0
votes
0answers
40 views

iPhone app freezes on presentViewController with SLComposerViewController

I am implementing sharing with Facebook and Twitter - On the simulator both of these work, but on my iPhone 4S running iOS6 the Facebook button freezes the app. The code is the same as it is for the ...
0
votes
1answer
29 views

iOS: Where to handle showing an account choice modal?

I'm writing a basic Twitter application (for teaching myself iOS/Objective-C) and I've run into a slight road bump. I asked a question related to it previously which received no answer and after ...
0
votes
0answers
128 views

Issues with ACAccountStore requestAccessToAccountsWithType not calling completion block

I've been having this issue and can't find anything on it. I'm using the Social framework to build a basic Twitter application (a learning project for myself) and haven't run into any major roadblocks ...
0
votes
2answers
36 views

shadow screen occur with Social Framework on iOS

I create application with feature 'shared with facebook' I use this code for make a facebook sharing [facebookViewController setInitialText:[NSString stringWithFormat:@"via %@", ...
1
vote
1answer
211 views

Facebook iOS SDK vs Social framework

I want to write app that is heavily integrated with Facebook. I'm not sure what shoud I use - sdk provided by Facebook or new Social Framework provided by Apple. Do you know some pros and cons of ...
0
votes
0answers
100 views

Error while displaying Facebook and SinaWeibo using Social Framework

I'm currently working on an iOS 6 application which uses the social framework features. In my application there are three buttons on pressing them, they will display Twitter, Facebook and SinaWeibo ...
1
vote
1answer
77 views

Using weak frameworks for earlier version support in iOS with Rubymotion

I've built my Rubymotion app to include Facebook and Twitter posting. the SLComposeViewController class required for this is only available from iOS 6.0 onwards. I'd like to make the app available ...
0
votes
0answers
71 views

Social.Framework - Can I change SLServiceTypes.h and add custom serviceType to use it in SLRequest?

Can I add a custom serviceType in SLServiceTypes.h to use it in SLRequest? I mean, after all, It's just making REST request to a Service right? I have tried using [SLRequest ...
1
vote
1answer
356 views

Handle ACAccountStoreDidChangeNotification for Facebook & Twitter in iOS 6+

I am using Social framework for Facebook & Twitter integration. For this I followed this link Everything is working fine except when I app receives ACAccountStoreDidChangeNotification , it ...
0
votes
2answers
280 views

Get Facebook uid from ACAccountStore in iOS?

Hi i want to get the Facebook user's UID from ACAccountStore in iOS 6 self.accountStore = [[ACAccountStore alloc]init]; ACAccountType *FBaccountType= [self.accountStore ...
0
votes
0answers
135 views

Xcode Social Framework Picture isn't uploading

I click my "Post" button on the iPhone simulator. It gives me no errors, telling me that my status was successfully posted. I log on to Facebook and see no picture. However twitter is accepting the ...
6
votes
1answer
898 views

Retrieving Twitter OAuth Token using Social Framework (iOS6)

I'm a little confused as to how I get the Twitter OAuth Token using the iOS Social Framework. Assuming I have a Facebook and Twitter account setup on iOS6, and I can get the ACAccount. When I check ...
1
vote
0answers
91 views

How to reset user's decision in ACAccountStore?

I am using ACAccountStore to get access to the user's Facebook account, if configured in OS X. After calling requestAccessToAccountsWithType:options:completion:, a dialog asking for permissions to ...
0
votes
1answer
42 views

What is the proper way to store a chosen ACAccount for a further use through the app?

I'm building an app in wich the user will use one of his iOS integrated Twitter accounts. I'm using the Accounts Framework and in the documentation example, the account from wich the request to ...
1
vote
0answers
104 views

Using “Extended Permissions” in Facebook SLRequest

I am interacting with Facebook from an iOS app. I'd like to avoid OAuth by using SLRequest from iOS 6's Social Framework. I'd like to use the Facebook API's "read stream" permission, which is ...
0
votes
0answers
118 views

Sending Facebook app request through iOS Social.framework

I am using social.framework library in my xcode project of ios. I can share things on facebook wall through this framework but I dont know and didnt find the way to how to send the "facebook app ...
0
votes
1answer
148 views

Delay a Facebook post using the Social Framework

I have a project that uses the iOS 6's Social Framework to post to the user's Facebook. All of a sudden, the client asks that I implement a delay between when the user posts the message and when the ...
0
votes
1answer
204 views

Facebook iOS6 integration adds image to album and not separate posts

I am trying to post to Facebook from my iOS app using the Social Framework. Using the SLComposeViewController, I have successfully added text and image to a Facebook post SLComposeViewController ...
3
votes
0answers
264 views

How to invite friends in Facebook using social framework [closed]

I'm developing social media app with Facebook. And my application is supporting both iOS 5 and iOS 6 and I want to use native facebook for inviting friends. In iOS 5 its working fine using graph ...
0
votes
2answers
732 views

getting error on checking SLServiceTypeFacebook and twitter

My app support iOS 5+. Now I want to add facebook and twitter. I added social.framework as optional and on facebook btn i check if([SLComposeViewController ...
1
vote
1answer
100 views

how to pass self to function in other class in objective c

Hi I am new in development of iOS. I make class named socialClass.h #import <Social/Social.h> #import <Accounts/Accounts.h> - (void)facebookSharingStatusCheckCall:(NSString *)url ...
0
votes
0answers
82 views

UITableView images from internet

i`m create a simple app(Timeline of Twitter). I can already do the data appear in the tableview. up here alright, but the pictures leave the Tableview very slow. Code of Cell: - (UITableViewCell ...
3
votes
0answers
734 views

Post to Friends wall on Facebook failed with Social Framework in iOS 6

I am trying to POST a invitation to iOS app on my facebook friends wall using Social framework in iOS 6+. But it gives me following error error = { code = 200; message = "(#200) ...
1
vote
1answer
116 views

How to give an app access to Accounts that was previously denied?

I've been playing with Accounts framework and during my tests I've denied the app access to Accounts. Now the following code returns Denied each time I run it. [[self accountStore] ...
1
vote
1answer
190 views

SLRequest gives Parse Error: Expected ]

I'm writing a Facebook Parser for iOS6. Yesterday, I made a test project with only the parser. This worked fine. When I want to implement the parser in my bigger project (with exactly the same method ...
0
votes
0answers
199 views

choose iOS twitter account

I'm creating a simple twitter client, and the first view the User selects the account (up here okay) but when he selects and switches to the second view (Timeline) appears an error on the console: ...
1
vote
1answer
661 views

Using SLRequest in iOS 6 to Post to Facebook

Trying to get my app to make a simple post to Facebook using SLRequest, but running into issues. Permissions get granted fine, it just won't post. -(void)requestPermissions { ACAccountStore ...
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 ...
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
0answers
70 views

UIPickerView prepareForSegue

I am creating a client. selects an account and the account passes (through segue). wanted to know how it does it. obs ** data passing is an array (of account) of a picker selected by the User. This ...
7
votes
1answer
1k views

iOS 6 Social framework not going to settings or no alert

I'm trying to implement the new social framework in iOS6, and have it working, except for 2 weird problems. If I've enabled the services I'm interested in (say... FaceBook), then it works fine. ...
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 ...
4
votes
0answers
739 views

ACAccount Facebook: An active access token must be used to query information about the current user

I am using iOS 6 Social framework for accessing user's Facebook data. I am trying to get likes of the current user within my app using ACAccount and SLRequest. I have a valid Facebook account ...
2
votes
0answers
238 views

Facebook integration in iOS6: Create new photo album via the application

I need some help with Facebook integration from the experts. I'm working on an iOS 6 app using Social.framework for posting on Facebook. -(IBAction)postToFacebook:(id)sender { if ...
0
votes
2answers
335 views

Twitter Framework for iOS - Why does TWrequest.h import <Social/SLRequest.h>?

Inside of TWRequest.h that's inside of the Twitter Framework, there it imports this #import <Social/SLRequest.h> But TWRequest was built for iOS 5, so why would it import the Social ...
4
votes
1answer
494 views

iOS Facebook SDK 3.1 openActiveSessionWithReadPermissions: Detect when user is not granting access

I need to know when a user has not granted Facebook access to my app during openActiveSessionWithReadPermissions execution. (Not granted meaning the switch is set to 'OFF' under Settings->Facebook->My ...
6
votes
3answers
4k views

How to display the default iOS 6 share action sheet with available share options?

Some apps show a default action sheet in iOS 6 with sharing options. Social Framework only has two classes, one for composing and one for request. What I found though is about composing for a ...
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 ...
6
votes
4answers
1k views

Strange behaviour when trying to use Twitter ACAccount

I've been playing a bit with the new Social.Framework and in particular with SLRequest, both available on iOS 6 and upwards. Thing is, I got really surprised by a crash I've been getting when trying ...
8
votes
1answer
2k views

TWRequest is deprecated in iOS 6.0 - what can I use instead?

I'm developing a Twitter Feed View for an iOS App. I found TWRequest and it works exactly like that which i was looking for. But: i get an Notice: "TWRequest is deprecated: first deprecated in iOS ...
0
votes
1answer
285 views

Linking twitter account to your iOS application [closed]

After going through number of tutorials and samples, I'm confused! I want to link user's twitter account with my iOS application so that i can access the following info, Access token User info ...
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 2