Category Archives: Plugins
ShareKit 0.2.1 Twitter not working
I added ShareKit to my project and got the following error: Twitter Send Status Error: {"error":"Could not authenticate with OAuth.","request":"\/1\/statuses\/update.json"}Twitter Send Status Error: {"error":"Could not authenticate with OAuth.","request":"\/1\/statuses\/update.json"} The following is how I fixed it: Around line 54 you will see the following code: self.authorizeURL = [NSURL URLWithString:@"https://api.twitter.com/oauth/authorize"]; self.requestURL = [NSURL URLWithString:@"https://api.twitter.com/oauth/request_token"]; self.accessURL = [NSURL […]
Google Web Fonts
I thought that Google Web Fonts deserved a post here. I used it in a website yesterday for the first time. I have done tests previously but haven’t actually used it. Admittedly there aren’t as many fonts on there as TypeKit or Fonts.com but they still have a decent selection. It is extremely easy to pick your […]
HTML5 Boilerplate
http://html5boilerplate.com/ This template is a great starting point when creating a new website. The template contains jQuery, Modernizr, uses HTML5 tags and CSS3 also. The template comes with and index.html page which should be base of all your pages in the site, it also has a 404.html page which can easily be changed to fit […]
PullToRefresh iOS
Maybe a bit late to the table but this plugin is so easy to use but makes a huge difference to an app. It takes a couple minutes to get it working in an app so no reason not to use it if you need a way of refreshing a uitableview https://github.com/enormego/EGOTableViewPullRefresh
SBJson
I use this framework when creating iOS apps and need to parse some JSON. It’s very easy to use and I have integrated into many apps I have created. http://stig.github.com/json-framework/