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
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteCond %{REQUEST_URI} ^system.* | |
| RewriteRule ^(.*)$ /index.php/$1 [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond $1 !^(index\.php|img|robots\.txt|css|js|font|resume|blog|human\.txt) | |
| RewriteRule ^(.*)$ index.php/$1 [L] | |
| </IfModule> |
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
| _imageView.hidden = NO; | |
| _imageView.alpha = 1.0f; | |
| // Then fades it away after 2 seconds (the cross-fade animation will take 0.5s) | |
| [UIView animateWithDuration:0.5 delay:0.5 options:0 animations:^{ | |
| // Animate the alpha value of your imageView from 1.0 to 0.0 here | |
| _imageView.alpha = 0.0f; | |
| } completion:^(BOOL finished) { | |
| // Once the animation is completed and the alpha has gone to 0.0, hide the view for good | |
| _imageView.hidden = YES; | |
| }]; |
NewerOlder