ios5 storyboard version of Facebook integration - ios

Just curious if there is an existing storyboard version of Facebook integration around because I've been googling for about 2 days. So far, I can do authorization for my app and what I have in mind is to try posting a simple status message perhaps from my app to my Facebook newsfeed. Most of the demos / tutorials I've gone through use xib's though such as this. This one is a good tutorial, however I want a storyboard version for this. Tell me if this post is a dupe and kindly post that question so I can study it.
I know there were a lot here that know the idea of sharing :)
So any helpful links were very much appreciated, as it will, in a way, boost my learning experience as well as the others who are starting iOS development :)
Thanks!

If you wish to simply post a status update you should be able to use the same examples that are shown in nib files. However if you want to see a sample app that uses story boards you can take a look at this sample app:
https://github.com/fbsamples/ios-social-cafe
It uses story boards to set up the UI and perform facebook login. You can also check it out to see how to use the new UI pickers (friends, place) and how to do open graph actions.
If you have more specific details around how you want to post a status update, please provide them so I can clarify further.

Yes, there is a simple example of an iOS app using Storyboards (iOS5 and later): https://github.com/fbsamples/ios-social-cafe
Hopefully that's helpful and shows how to do a good authorization flow with Storyboarding.
Good luck.

Related

Method of integrating a certain persons Twitter account into iOS App

In my app so far, I have to implement all the Twitter posts from a certain individual into a table view, and it automatically updates when the person tweets a certain post. Is it possible to mention a certain individual e.g. #John.. If it is possible, how can I do it? If not just let me know and I will delete this question as it could be too ambitious. Thanks!
I don't quite understand what you mean. I do a little!
There is a quick and easy way of doing this! One easy way is to use Twitters own SDK called Fabric. See Here
See this link for the timeline stuff and integration to your app Documentation
This should help you out!
P.S. Let me know how you get on!

iOS discussion board / comments board API or sample?

I'm trying to find examples of code libraries or sample code for adding a commenting functionality in my apps. I've successfully implemented the Disquser iOS wrapper (http://bit.ly/iadisquser) in a couple of my apps but find it difficult to manage. I've seen other apps that incorporate a commenting feature that's cool, including theCHIVE Lite app, that looks like its using Facebook maybe?? Any hints or suggestions?
Look at QuickBlox Custom Objects code sample. I think it's what you need.
It represents user's notes, which he can create & comment. So, you can implement this comments logic into your apps and comment any item you want
There's a good tutorial for building a chat app that may help you get started, you can find it here: http://www.ibm.com/developerworks/library/x-ioschat/index.html

URL Schemes and Facebook App 5.0

There's a question already related to groups, but it seems it's much more than that. Have URL schemes been completely thrown out of the new app (aside from the generic fb://), or is there a new list of supported schemes?
In particular, we can't get to a place details page. I've also tried /pages, /page, /places, /place...
Thanks,
Ivan
I'm not sure about those urls... but I just posted what I believe is a solution for facebook business pages.. it may help? Here it is below:
OK .. seriously this took me about 90 minutes of research to figure out. It works currently under facebook ios 5.0.1 for iPhone.. haven't tried it in iPad yet.
The url is fb://profile/132753734806
NOW the important part is that number. That links to one of my clients, Charles Scott. HOWEVER, that's not their FBID or Page ID.. their Page ID is 10150348920319807
so you would think it should be fb://profile/10150348920319807 but that gives me an error.
Here's how you get the correct code.. click on any of your page's photos.. here's an example for my client https://www.facebook.com/photo.php?fbid=10150348920319807&set=a.10150348920314807.356942.132753734806&type=1&theater
if you notice the FBID that does not work follows fbid= in that URL.. the number you WANT is just before the &type=1theater but following that last period. 132753734806 is the correct code to punch in after fb://profile/
I hope that makes some sense... I know zero about code or coding but this was bothering me so much and I knew there was a way.
Now, the two questions I would love to have answered/working.. 1. if this could work on android phones 2. create a working qr code for this url so people can scan with ios devices and have it open automatically
Good luck and I hope this helps everyone!
I tried Alessandro's way but did not succeed - the number he mentioned is new every time.
I tried fb://profile?id={pageId} and it worked in my case. {pageId} is simple page id number without any tricks. Facebook app version is 5.0.1

How do you find what you need in iOS frameworks?

I searched for an answer to this, but perhaps the question is a bit too noob for this site--basically I'm a bit overwhelmed by all the different frameworks out there or even how to find what you need in a single framework. If I want to, say, find a way to fetch address book data into my app, how do I search for that? Is there some magic efficient way that everyone uses?
The xCode Organizer window has a documentation tab that you can search in. Put in a keyword and it will show you refrences, example code and what framework that class is in.
I'm not 100% sure this qualifies as an answer, but yep: Google for it. Whenever I want to learn about something new, I Google for (for example) "iOS Address Book Example". That seems to be the best way to find info on how to get into a new subject when you're not sure which framework to look in.
If you have an idea of which framework is appropriate, then the iOS documentation (both at developer.apple.com and built into xCode) is your friend.
Just found this, looks useful:
http://sazameki.jp/software/cocoa-browser-air/
I know it's just the same info you can see elsewhere, but at first glance at least the layout makes it all seem more managable.

Basically: how do you get Open Feint X to work? (iOS)

I'm currently integrating Open Feint X in my iOS project, with a custom store, trying to synchronize data between OFX servers, to download new contents... and all I have to do it is their sample application, with no comment, and a very basic API...
Would anyone have some clues to give, maybe a useful link that Google did not reveal to me, or anything that could help me to understand which functions I should call and where ?
Thanks,
Grhyll.
EDIT: They are currently working on a doc. However, I've managed to make a few steps further, so if you have questions, don't hesitate to ask here, and if I can I'll answer...

Resources