You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Olivier Louvignes (JIRA)" <ji...@apache.org> on 2015/03/13 13:02:38 UTC

[jira] [Updated] (CB-8669) Always use setters to fix memory issues without ARC

     [ https://issues.apache.org/jira/browse/CB-8669?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olivier Louvignes updated CB-8669:
----------------------------------
    Description: 
https://github.com/apache/cordova-plugin-file/pull/104

Encountered memory issues with a non-ARC project (cordova+unity3d). Setter should be used to prevent memory issues, eg:

A synthesized retained setter looks like :

[code]
- (void)setValue: (id)newValue
{
    if (value != newValue)
    {
        [value release];
        value = newValue;
        [value retain];
    }
} 
[/code]

  was:
https://github.com/apache/cordova-plugin-file/pull/104

Encountered memory issues with a non-ARC project (cordova+unity3d). Setter should be used to prevent memory issues, eg:

A synthesized retained setter looks like :

- (void)setValue: (id)newValue
{
    if (value != newValue)
    {
        [value release];
        value = newValue;
        [value retain];
    }
} 


> Always use setters to fix memory issues without ARC
> ---------------------------------------------------
>
>                 Key: CB-8669
>                 URL: https://issues.apache.org/jira/browse/CB-8669
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin File
>            Reporter: Olivier Louvignes
>
> https://github.com/apache/cordova-plugin-file/pull/104
> Encountered memory issues with a non-ARC project (cordova+unity3d). Setter should be used to prevent memory issues, eg:
> A synthesized retained setter looks like :
> [code]
> - (void)setValue: (id)newValue
> {
>     if (value != newValue)
>     {
>         [value release];
>         value = newValue;
>         [value retain];
>     }
> } 
> [/code]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org