Thursday, 15 September 2011

Second Url FIle

// For IAd Banner View Demo

http://bees4honey.com/blog/tutorial/how-to-add-iad-banner-in-iphoneipad-app/

http://www.raywenderlich.com/1371/how-to-integrate-iad-into-your-iphone-app

All Kind of Demo

http://pragprog.com/titles/amiphd/source_code

// ITennis Game
http://www.icodeblog.com/2009/05/04/iphone-game-programming-tutorial-part-4-basic-game-audio/

//Loading Html file into webview with Image Src

  NSString *path =[[NSBundle mainBundle] pathForResource:[generalArray objectAtIndex:rowId] ofType:@"html"];
      
[webView loadRequest: [NSURLRequest requestWithURL: [NSURL fileURLWithPath:path isDirectory:NO]]];
 
//For the Content Mode of UIView etc,

http://developer.apple.com/library/ios/#documentation/WindowsViews/Conceptual/ViewPG_iPhoneOS/WindowsandViews/WindowsandViews.html



//For the slide view like the actual image is sliding by caBasic transition

 CABasicAnimation *theAnimation;
    theAnimation=[CABasicAnimation animationWithKeyPath:@"transform.translation.x"];
    theAnimation.duration=1;
    theAnimation.repeatCount=2;
    theAnimation.autoreverses=YES;
    theAnimation.fromValue=[NSNumber numberWithFloat:0];
    theAnimation.toValue=[NSNumber numberWithFloat:-320];
    [self.view.layer addAnimation:theAnimation forKey:@"animateLayer"];


No comments:

Post a Comment