Posts

Showing posts with the label tutorial

Tools for Server End apps

Look at logs in your web browser http://logio.org/ Command line tools http://kkovacs.eu/cool-but-obscure-unix-tools Via: http://www.smashingmagazine.com/2011/06/17/useful-resources-tools-and-services-for-web-designers/

Custom UITabBar

Technique 1: http://blog.theanalogguy.be/2010/10/06/custom-colored-uitabbar-icons/ Technique 2: @implementation UITabBar ( CustomImage ) - ( void ) drawRect :( CGRect ) rect {     UIImage * image = [ UIImage imageNamed : @ "background.png" ];     [ image drawInRect : CGRectMake ( 0 , 0 , self . frame . size . width , self . frame . size . height )]; } @end http://stackoverflow.com/questions/675433/custom-colors-in-uitabbar Technique 3 http://idevrecipes.com/2011/01/04/how-does-the-twitter-iphone-app-implement-a-custom-tab-bar/ Technique 4: (Tried and tested) https://github.com/rumex/RXCustomTabBar

UIScrollView

Add UIScrollView Programmatically http://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/ Ass UIScrollView Using IB http://www.youtube.com/watch?v=aXY12W_QQq4

Core Data Epic Introduction

http://cocoadevcentral.com/articles/000086.php Fetch data using one line: [[self managedObjectContext] fetchObjectsForEntityName:@"Employee" withPredicate:     @"(lastName LIKE[c] 'Worsley') AND (salary > %@)", minimumSalary]; Via:  http://cocoawithlove.com/2008/03/core-data-one-line-fetch.html one to many relationship http://lethain.com/one-to-many-relationships-in-coredata/

Great collection of iOS Resources

Learning Resource http://www.buildingiphoneapps.com/2011/04/great-learning-resources-for-ios.html [advanced]  http://oleb.net/blog/2011/04/best-ios-and-mac-development-related-links-march-2011/ [advanced]  http://nachbaur.com/blog/ios-development-link-roundup-part-1 Open Source [UIkit]  http://iosframeworks.com/ http://cocoacontrols.com/ [Crash Report]  http://code.google.com/p/plcrashreporter/ DTAttributedTextView  is used for displaying HTML-formatted comments without UIWebView libxml2 : for scraping enormego   and   three20 : pull-to-refresh Telekenesis : URL parsing from MWFeedParser : HTML entities atebits : smoothness News YC   ( http://newsyc.me/?? ) open source hacker news client https://github.com/newsyc/newsyc http://kstenerud.github.com/ObjectAL-for-iPhone/ http://opensource.apple.com/release/ios-43/ http://www.iphoneexamples.com/ [OpenGLES]  http://www.iphonede...