Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know how I would include a facbeook "like button" in an iphone app. I tried calling the iframe inside of a UIWebView but that doesn't work.

share|improve this question

7 Answers

Check out this nice bit of code: http://angelolloqui.blogspot.com/2010/11/facebook-like-button-on-ios.html

Add the FBLikeButton class to your view:

FBLikeButton *likeButton = [[FBLikeButton alloc] initWithFrame:CGRectMake(0, 372, 320, 44)       
andUrl:@"http://www.facebook.com/pages/De-Zilk/108209735867960"];

Thanks a lot Angel García Olloqui

EDIT: Nice to add... For bonus points:
If you use above method the webpage is not well formatted for an iPhone. What you can do is run some JavaScript code to remove all the disturbing divs. Use this (long sentence):

  [_webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"javascript:document.getElementsByClassName('uiButton')[2].style.visibility='hidden';var child1 = document.getElementById('standard_status');var parent1 = document.getElementById('login_form');parent1.removeChild(child1);var child2 = document.getElementById('pageheader');var parent2 = document.getElementById('booklet');parent2.removeChild(child2);document.getElementById('loginform').style.width = '200px';var child3 = document.getElementById('reg_btn_link');var parent3 = document.getElementsByClassName('register_link')[0];parent3.removeChild(child3);var child4 = document.getElementById('signup_area');var parent4 = document.getElementById('login_form');parent4.removeChild(child4);var child5 = document.getElementsByClassName('mbm')[0];var parent5 = document.getElementById('loginform');parent5.removeChild(child5);var child6 = document.getElementsByClassName('reset_password form_row')[0];var parent6 = document.getElementById('loginform');parent6.removeChild(child6);var child7 = document.getElementsByClassName('persistent')[0];var parent7 = document.getElementById('loginform');parent7.removeChild(child7);"]];

You can place it in the delegate method webViewDidFinishLoad from the FBDialog Facebook class.

share|improve this answer

maybe this is helpful

http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app

share|improve this answer
1  
I believe the Api has been updated since. – Eric Brotto Jan 4 '12 at 17:13

Several of the solutions above (e.g. @floorjiann, @fabiobeta, @Stephen-Darlington, @scott) assume that the iPhone application is also a Facebook application (with its own id).

However if your iPhone application just has a fan page, this is not the case.

share|improve this answer
i have ios app which is also a facebook app. i've created it's facebook app page as well. I want to like facebook page programatically on behalf of user when ever registered user of my app hits like button. any suggestion plz? i found that we can't like facebook pages through built-in like actions. is it possible to like facebook page of ios facebook app? – user1632984 Feb 18 at 8:06

You can include it in a UIWebView, just make sure it's inside <html><body>. The problem is that once the user clicks the button, the UIWebView may redirect to a log-in form, so you would have to make it large enough to fit that thing.

Have fun creating a design that presents the button in a sensible fashion.

share|improve this answer

Facebook have recently updated their iPhone Facebook Connect framework to work with the Graph API. This is the API that you need to "Like" objects on Facebook.

share|improve this answer
Could you be so kind to add some more details? – Valeriy Van Apr 9 at 16:09

Here you go - w the source code...enjoy -and please leave a comment if its useful.

http://nowbranded.com/blog/adding-a-facebook-like-button-to-an-iphone-application/

share|improve this answer
1  
Is this still valid? – AbhinavVinay Jul 2 '12 at 23:44
Code by the link base on FBSession which is deprecated now. – Valeriy Van Apr 9 at 16:06

I this moment in time you can't. The mobile APIs are not exposing this capability. You can use some workaround consisting in embedding the html way of doing it in your app.

Some details on the workaround here: http://petersteinberger.com/2010/06/add-facebook-like-button-with-facebook-connect-iphone-sdk/

share|improve this answer
1  
Link is now broken. – Valeriy Van Apr 3 at 19:59
I'd mailed to the author for the broken link! Will update here if get some reply! – Hemang Apr 24 at 11:06
In the reply from the author, after this post Facebook has made 50 times changes to the SDK, so its now outdated and not like to avail. – Hemang Apr 25 at 9:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.