Friday, 27 April 2012

urldemo 11

//For the resuming the app after call ended in iPhone
NSString *strPhoneNo = @"9904523387";
    UIWebView *phoneCallWebview = [[UIWebView alloc] init];
    NSURL *callURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", strPhoneNo]];
    [phoneCallWebview loadRequest:[NSURLRequest requestWithURL:callURL ]];


//For the different kind of animation in iPhone
https://github.com/bobmccune/Core-Animation-Demos

//For the rotating the like a wheel control in iPhone
https://github.com/funkyboy/How-To-Create-a-Rotating-Wheel-Control-with-UIKit

//For the different kind of demo for iPhone
http://highwaystech.com/index.php/source-code/ios.html

//For the poptextview demo in iPhone
https://github.com/inamiy/YIPopupTextView

//For the best coverflow example for iPhone
https://github.com/nicklockwood/icarousel

//For the tag cloud for the iPhone
https://github.com/cezarsignori/SphereView/

//For the barcode api for iPhone
http://www.mashape.com/index
maulik
iball@1910
http://www.upcdatabase.com/item/0016000660601

//For the searching in search bar or array in iPhone
 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"(SELF BEGINSWITH [cd] %@)", savedSearchTerm];
        [searchResults addObjectsFromArray: [states filteredArrayUsingPredicate:predicate]];
   


//For the loading more no of row in tableview in iPhone
http://useyourloaf.com/blog/2010/10/2/dynamically-loading-new-rows-into-a-table.html

//For the different example of iPhone
http://kshitizghimire.com.np/lazy-loading-custom-uitableviewcell/

//For the all kind of demo for the Mono touch application for iPhone
http://samples.xamarin.com/Samples

//For the pop view like the crossdissolve in iphone
https://github.com/jerometonnelier/LeveyPopListView
- (void)fadeIn
{
    self.transform = CGAffineTransformMakeScale(1.3, 1.3);
    self.alpha = 0;
    [UIView animateWithDuration:.35 animations:^{
        self.alpha = 1;
        self.transform = CGAffineTransformMakeScale(1, 1);
    }];

}
- (void)fadeOut
{
    [UIView animateWithDuration:.35 animations:^{
        self.transform = CGAffineTransformMakeScale(1.3, 1.3);
        self.alpha = 0.0;
    } completion:^(BOOL finished) {
        if (finished) {
            [self removeFromSuperview];
        }
    }];
}
//For the face detection by third party in iPhone
http://developers.face.com/download/
https://github.com/sergiomtzlosa/faceWrapper-iphone

//For the setting the color to the tab bar in iPhone
 // customize the tab bar background
    CGRect frame = CGRectMake(0, 0, 320, 49);
    UIView *viewBackround = [[UIView alloc] initWithFrame:frame];
    UIImage *imgBackground = [UIImage imageNamed:@"tabBg.png"];
    UIColor *colorPattern = [[UIColor alloc] initWithPatternImage:imgBackground];
    viewBackround.backgroundColor = colorPattern;
    [colorPattern release];
    [[self.tabBarController tabBar] insertSubview:viewBackround atIndex:1];
    [viewBackround release];

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]];