A Modules.Newsstand object which represents an issue from the Newsstand library.
The name of the API that this proxy corresponds to.
The name of the API that this proxy corresponds to.
The value of this property is the fully qualified name of the API. For example, Button
returns Ti.UI.Button
.
The contentURL of the issue
The contentURL of the issue
This is the location assets downloaded for the issue will be saved.
Note: contentURL will be undefined after an issue is removed from the library.
The Window or TabGroup whose Activity lifecycle should be triggered on the proxy.
The Window or TabGroup whose Activity lifecycle should be triggered on the proxy.
If this property is set to a Window or TabGroup, then the corresponding Activity lifecycle event callbacks will also be called on the proxy. Proxies that require the activity lifecycle will need this property set to the appropriate containing Window or TabGroup.
Downloads an asset for this issue. This connection is managed by the system. This allows the download to run in the background even when the app is not running. Download progress and errors can be captured using event listeners.
Note: Throws an exception if called twice to download the same asset for a single issue.
Example
issue.downloadAsset({
url:contentURL,
filename:'TEST.TST',
userInfo:{
id:1234,
name:'TEST1'
}
});
Sets the value of the lifecycleContainer property.
New value for the property.