This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # ~/bin/ocaml-git-sync.sh: Sync the ~/git/ocaml.git repository with the master | |
| # Subversion repository at Inria and upload the changes | |
| # to GitHub at bmeurer/ocaml. | |
| # Copyright (c) 2011 Benedikt Meurer <benedikt.meurer@googlemail.com> | |
| # | |
| # Repository location | |
| GIT_DIR="$HOME/git/ocaml.git" | |
| export GIT_DIR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions | |
| { | |
| // Put necessary initialization steps here... | |
| // Add imageView overlay with fade out and zoom in animation | |
| UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.window.frame]; | |
| imageView.image = [UIImage imageNamed:@"Default"]; // assuming your splash image is "Default.png" or "Default@2x.png" | |
| [self.window addSubview:imageView]; | |
| [self.window bringSubviewToFront:imageView]; | |
| [UIView transitionWithView:self.window |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*- | |
| * Copyright (c) 2011, Benedikt Meurer <benedikt.meurer@googlemail.com> | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions | |
| * are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright | |
| * notice, this list of conditions and the following disclaimer. |
NewerOlder