NoticeView
NoticeView copied to clipboard
Updated iOS7 Compatibility
Updated CGSize
What does the patch solve? When I run the app, it still looks bad.
This simply fixes deprecation warnings, it should not affect the UI of the plugin. Sorry I did not really make my changes clear in the pull request.
Any Updates incoming? The notification is still displayed behind the navigation-bar...
Refer to this Stackoverflow question, add following line to the -(void)viewDidLoad
method to solve the issue that notifications display behind the navigation bar of iOS 7.
if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
self.edgesForExtendedLayout = UIRectEdgeNone;
The sample app still doesn't look right on iOS 7.