Thursday, 5 April 2012

urldemo 10

//For the different kind of demo for iPhone
http://stackoverflow.com/questions/1939/how-to-articles-for-iphone-development-and-objective-c

//For the rotating an object by center by touch in iPhone
https://github.com/hollance/MHRotaryKnob
http://rdsquared.wordpress.com/

//For the gallery or grid view for the iPhone
https://github.com/gdavis/FGallery-iPhone

//For the zip file and parsing the images from server
http://www.touch-code-magazine.com/update-dynamically-your-iphone-app-with-new-content/


//For the different types of animation
http://www.cimgf.com/2012/01/11/handling-incoming-json-redux/

//For the pull to refresh demo of the UITableView in iPhone
https://github.com/leah/PullToRefresh

//For opening the directly installed app from the iPhone
http://wiki.akosma.com/IPhone_URL_Schemes

//For the barcode scanner in iPhone
https://github.com/stefanhafeneger/Barcode

//For the Indexed UITableView in iPhone
http://www.iphonedevcentral.com/indexed-uitableview-tutorial/
https://github.com/kwylez/IndexedTable

//For the short url of the long url in iPhone
https://github.com/dbloete/bitly-iphone

//For the Popup any view in iPhone
https://github.com/sonsongithub/PopupView

//For the Tint in the UITableview in iphone
https://github.com/PaulSolt/WEPopover

//For changing the color of the UITabBarItem text in iphone

[[UITabBarItem appearance] setTitleTextAttributes:
     [NSDictionary dictionaryWithObjectsAndKeys:
      [UIColor blackColor], UITextAttributeTextColor,
      [UIColor grayColor], UITextAttributeTextShadowColor,
      [NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset,
      [UIFont fontWithName:@"AmericanTypewriter" size:0.0], UITextAttributeFont,
      nil]
                                             forState:UIControlStateNormal];

//For changing the color of the UITabBar  in iphone

[[UITabBar appearance] setTintColor:[UIColor redColor]];

No comments:

Post a Comment