Startup UI improvements.
[IMPROVED] Fade-in effect when opening Master Password. [IMPROVED] Shade of circular shadow fixed between launch image and background image.
@ -145,7 +145,18 @@
|
||||
usingBlock:^(NSNotification *note) {
|
||||
[self updateUsers];
|
||||
}];
|
||||
|
||||
[[NSNotificationCenter defaultCenter] addObserverForName:UIApplicationWillResignActiveNotification object:nil queue:nil
|
||||
usingBlock:^(NSNotification *note) {
|
||||
self.uiContainer.alpha = 0;
|
||||
}];
|
||||
[[NSNotificationCenter defaultCenter] addObserverForName:UIApplicationDidBecomeActiveNotification object:nil queue:nil
|
||||
usingBlock:^(NSNotification *note) {
|
||||
[self updateLayoutAnimated:NO allowScroll:NO completion:nil];
|
||||
[UIView animateWithDuration:1 animations:^{
|
||||
self.uiContainer.alpha = 1;
|
||||
}];
|
||||
}];
|
||||
|
||||
[self updateLayoutAnimated:NO allowScroll:YES completion:nil];
|
||||
|
||||
[super viewDidLoad];
|
||||
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 247 KiB After Width: | Height: | Size: 250 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 145 KiB After Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 184 KiB |
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 172 KiB |