NoticeView icon indicating copy to clipboard operation
NoticeView copied to clipboard

Updated iOS7 Compatibility

Open paulwalton opened this issue 10 years ago • 5 comments

Updated CGSize

paulwalton avatar Sep 26 '13 11:09 paulwalton

What does the patch solve? When I run the app, it still looks bad.

tciuro avatar Sep 26 '13 22:09 tciuro

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.

paulwalton avatar Sep 27 '13 10:09 paulwalton

Any Updates incoming? The notification is still displayed behind the navigation-bar...

pdiegmann avatar Oct 18 '13 18:10 pdiegmann

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;    

alexcheng1982 avatar Jan 27 '14 22:01 alexcheng1982

The sample app still doesn't look right on iOS 7.

skull-squadron avatar Jul 20 '14 20:07 skull-squadron