UIActivityViewController

send all -facebook, twitter, mail -message with image

UIImage *img=[UIImage imageNamed:@”celebrate-success.png”];

NSArray *arr1=[[NSArray alloc]initWithObjects:@”kaushik”,@”info”,@”soft”,img, nil];

UIActivityViewController *actvwct=[[UIActivityViewController alloc]initWithActivityItems:arr1 applicationActivities:nil];

[self presentViewController:actvwct animated:YES completion:nil];

splash screen

splash_screen-Info.plist file end + button
Launch image positive-quotes.jpg

appdelegate.h

– (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

sleep(3);
// Override point for customization after application launch. return YES;

}

Leave a comment