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