jcesarmobile created CB-10102:
---------------------------------
Summary: statusbar removeObserver is wrong
Key: CB-10102
URL: https://issues.apache.org/jira/browse/CB-10102
Project: Apache Cordova
Issue Type: Bug
Components: iOS, Plugin Statusbar
Reporter: jcesarmobile
Assignee: jcesarmobile
Priority: Minor
The current code is wrong
{code}[[NSNotificationCenter defaultCenter] removeObserver:self
forKeyPath:UIApplicationDidChangeStatusBarFrameNotification];
{code}
It should be
{code}
[[NSNotificationCenter defaultCenter]removeObserver:self
name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
{code}
It might crash on plugin dealocation
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]