ios 6 how to add facebook like button natively? - iphone

Any of you knows how to implement a facebook like natively in iOS app?. I'll like to implement the button like normla IUbutton.

You may find this useful. I was looking for it the other day but have not had a chance to implement.
http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app
In short I don't believe there is a way to do it using native UIbutton.

There is no way to do this natively at this time. The quickest way to do it is to load a webview, and navigate to the page that you wish to like.

Lately FB opened this throught their SDK
Check this out
https://developers.facebook.com/docs/ios/like-button/

Related

How to integrate Like feature in iPhone SDK 3.1 with Facebook sharing app

I am new to iPhone development. I’ve added Facebook sharing functionality and I also want to add the Like feature from Facebook. I’ve followed one of the examples; it works if Facebook sharing functionality hasn’t been implemented, because some files create contradiction (specifically FBRequest.h). But I want to add both sets of functionality at the same time. Any suggestions?
If you are new then its not a issue. Everybody have same brain. So its not a big issue. Check
this link: http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app
First of all understand it then implement it. I know you will surely implement this in Your
App. Best of luck.

Twitter login without webview

In my app i have my own form for sign-in Twitter.
Is it possible login without standard webview (with popup from bottom) ??? I mean without framework which uses the most app from AppStore
Maybe some examples...
Thanks advance.
All hail WWDC: This is definitely what you want. That is, if you will use new APIs. This one only works with iOS 5.
Please remember to click the hollow check mark if this answer works for you. People are much more likely to answer your questions if you do.

iPhone Saved Pop Up

Does anyone know if the popup in the attached screenshot is standard in the SDK? I'm trying to figure out how to make it and don't really want to start from scratch.
It's not standard in the SDK (actually it is, but it's private so you can't use it in AppStore apps).
However, there's a lot of open source components that do exactly that.
My favourite is SVProgressHUD, but a popular alternative is MBProgressHUD.

iOS: Scroll up to refresh

Many iOS apps have a "scroll up to refresh" feature, such as the Twitter app. If you scroll up beyond the beginning of the page or table, you'll get a message explaining how to use the feature.
That controller is not from Apple but many apps seem to use it. I was told it was released for public use by a programmer, but I can't find it after a long google session.
I'd be grateful if anyone can direct me to it! Thanks!
This is a popular implementation: https://github.com/enormego/EGOTableViewPullRefresh
Here's a link to the original code by enormego on github:
https://github.com/enormego/EGOTableViewPullRefresh
https://github.com/enormego/EGOTableViewPullRefresh
Also it was in Facebook's three20 library I guess.
I was able to find two examples a few minutes after posting this question:
How to make a Pull-To-Reload TableView just like Tweetie 2

reCaptcha on iPhone App using SDK

Has anyone used reCaptcha on their iPhone application? I am trying to figure out how to embed it in my App...
The only way to use reCaptcha in an iPhone app is by rendering a WebView within the app. There is a nice alternative to reCaptcha called kaptcha that actually has a usable api. http://code.google.com/p/kaptcha/
use this http://iphonesdksnippets.com/post/2009/05/05/Add-text-to-image-%28UIImage%29.aspx find a nice background image for you app, and just randomly generate some number and/or text. not exactly a captcha, but it can work out. Hope it helps!