in Objective-C/Cocoa Bundleself.title = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleName"];
Anonymous
0 Comments
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.google.com/"]];
Anonymous
0 Comments
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
Anonymous
0 Comments
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://1234567890"]];
Anonymous
0 Comments
[UIApplication sharedApplication].idleTimerDisabled = YES;
Anonymous
0 Comments
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://somemail@mymailserver.com"]];
Anonymous
0 Comments
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
Anonymous
0 Comments
[[UIApplication sharedApplication] endIgnoringInteractionEvents];
Anonymous
0 Comments
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
Anonymous
0 Comments
UIAlertView* alert = [[[UIAlertView alloc] initWithTitle:@"Warning" message:@"too many alerts" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] autorelease]; [alert show]
Anonymous
0 Comments