Inherits from NSOperation
Declared in TWSReleaseNotesDownloadOperation.h
TWSReleaseNotesDownloadOperation.m

Overview

Use the TWSReleaseNotesDownloadOperation class to create an operation with the purpose of downloading the release notes text for a specified app, using the iTunes Search API.

The result of the operation is accessible in the completionBlock, using the releaseNotesText and the error properties.

Tasks

Getting main properties

Creating the operation

Properties

error

An error object associated to the failed operation.

@property (readonly, strong, nonatomic) NSError *error

Declared In

TWSReleaseNotesDownloadOperation.h

releaseNotesText

The downloaded release notes text.

@property (readonly, copy, nonatomic) NSString *releaseNotesText

Declared In

TWSReleaseNotesDownloadOperation.h

Instance Methods

initWithAppIdentifier:

Creates and operation with custom parameters.

- (id)initWithAppIdentifier:(NSString *)appIdentifier

Parameters

appIdentifier

The App Store app identifier for remote release notes retrieval.

Return Value

The initialized operation.

Declared In

TWSReleaseNotesDownloadOperation.h