Compare commits

..

4 Commits

Author SHA1 Message Date
Cezary Wojcik b87af9f288 2.2.6 2015-05-12 12:17:28 -07:00
Cezary Wojcik 975ca58291 2.2.5 2015-05-04 07:08:59 -07:00
Cezary Wojcik d9d8c1d342 Merge pull request #50 from somethingkindawierd/master
Fix calculation of navbar height
2015-05-01 15:39:11 -07:00
Jon Beebe e700d781cc Fix calculation of navbar height 2015-04-30 11:41:45 -05:00
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "CWStatusBarNotification"
s.version = "2.2.4"
s.version = "2.2.6"
s.summary = "A library that creates status bar notifications."
s.description = "CWStatusBarNotification is a library allows you to present a beautiful text-based notification in the status bar."
s.homepage = "https://github.com/cezarywojcik/CWStatusBarNotification"
@@ -61,6 +61,12 @@
return self._cwViewControllerSupportedInterfaceOrientation;
}
- (BOOL)prefersStatusBarHidden
{
CGFloat statusBarHeight = [[UIApplication sharedApplication] statusBarFrame].size.height;
return !(statusBarHeight > 0);
}
@end
# pragma mark - dispatch after with cancellation
@@ -272,7 +278,7 @@ static void cancel_delayed_block(CWDelayedBlockHandle delayedHandle)
- (CGFloat)getNavigationBarHeight
{
if (UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation) ||
if (UIInterfaceOrientationIsPortrait([UIApplication sharedApplication].statusBarOrientation) ||
UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
return 44.0f;
}
+1 -1
View File
@@ -18,7 +18,7 @@ Works for iPhone and iPad.
### CocoaPods
`pod 'CWStatusBarNotification', '~> 2.2.4'`
`pod 'CWStatusBarNotification', '~> 2.2.6'`
### Manual