Inherits from OlapicMediaList : NSObject
Declared in OlapicCurationMediaList.h

Overview

List all the media objects available for curation

Class Methods

getKeyForCurationSortingType:

Get string key for a curation sorting type

+ (NSString *)getKeyForCurationSortingType:(OlapicCurationMediaListSortingType)sort

Return Value

The string with the key

Availability

v1.0

Declared In

OlapicCurationMediaList.h

Instance Methods

initWithSearch:delegate:

Initialize with the search text and the delegate reference.

- (id)initWithSearch:(NSString *)fullTextQuery delegate:(id<OlapicMediaListDelegate> __weak)delegateObject

Parameters

fullTextQuery

The text search can have # @

delegateObject

The reference to the delegate object

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Declared In

OlapicCurationMediaList.h

initWithSearch:delegate:status:

Initialize with the search text, the delegate reference and the status flag.

- (id)initWithSearch:(NSString *)fullTextQuery delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicCurationMediaListStatusFilterType)status

Parameters

fullTextQuery

The text search can have # @

delegateObject

The reference to the delegate object

status

Filter by default status

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Declared In

OlapicCurationMediaList.h

initWithSearch:delegate:status:favorited:

Initialize with the search text, the delegate reference and the favorited flag.

- (id)initWithSearch:(NSString *)fullTextQuery delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicCurationMediaListStatusFilterType)status favorited:(OlapicCurationMediaListFavoritesFilterType)favorited

Parameters

fullTextQuery

The text search can have # @

delegateObject

The reference to the delegate object

status

Filter by default status

favorited

If the media is favorited

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Declared In

OlapicCurationMediaList.h

initWithSearch:delegate:status:favorited:sources:

Initialize with the search text, the delegate reference, the favorited flag and a list of sources.

- (id)initWithSearch:(NSString *)fullTextQuery delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicCurationMediaListStatusFilterType)status favorited:(OlapicCurationMediaListFavoritesFilterType)favorited sources:(NSArray *)sources

Parameters

fullTextQuery

The text search can have # @

delegateObject

The reference to the delegate object

status

Filter by default status

favorited

If the media is favorited

sources

The media source

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Declared In

OlapicCurationMediaList.h

initWithSearch:delegate:status:favorited:sources:dateFrom:

Initialize with the search text, the delegate reference, the favorited flag, a list of sources and the filter date from.

- (id)initWithSearch:(NSString *)fullTextQuery delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicCurationMediaListStatusFilterType)status favorited:(OlapicCurationMediaListFavoritesFilterType)favorited sources:(NSArray *)sources dateFrom:(NSString *)dateFrom

Parameters

fullTextQuery

The text search can have # @

delegateObject

The reference to the delegate object

status

Filter by default status

favorited

If the media is favorited

sources

The media source

dateFrom

The filter search to a specific date

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Declared In

OlapicCurationMediaList.h

initWithSearch:delegate:status:favorited:sources:dateFrom:dateTo:

Initialize with the search text, the delegate reference, the favorited flag, a list of sources, the filter date from, and the filter to date.

- (id)initWithSearch:(NSString *)fullTextQuery delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicCurationMediaListStatusFilterType)status favorited:(OlapicCurationMediaListFavoritesFilterType)favorited sources:(NSArray *)sources dateFrom:(NSString *)dateFrom dateTo:(NSString *)dateTo

Parameters

fullTextQuery

The text search can have # @

delegateObject

The reference to the delegate object

status

Filter by default status

favorited

If the media is favorited

sources

The media source

dateFrom

The filter search to a specific date

dateTo

The filter search to a specific date

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Declared In

OlapicCurationMediaList.h

initWithSorting:delegate:

Basic initialization with sorting and delegate reference

- (id)initWithSorting:(OlapicCurationMediaListSortingType)sort delegate:(id<OlapicMediaListDelegate> __weak)delegateObject

Parameters

sort

The sorting type

delegateObject

The reference to the delegate object

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Declared In

OlapicCurationMediaList.h

initWithSorting:delegate:status:

Initialize with the sorting, the delegate reference and a specific media status

- (id)initWithSorting:(OlapicCurationMediaListSortingType)sort delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicMediaStatus *)status

Parameters

sort

The sorting type

delegateObject

The reference to the delegate object

status

The required media status

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Declared In

OlapicCurationMediaList.h

initWithSorting:delegate:status:stream:

Initialize with the sorting, the delegate reference, and a specific status or stream

- (id)initWithSorting:(OlapicCurationMediaListSortingType)sort delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicMediaStatus *)status stream:(OlapicStreamEntity *)stream

Parameters

sort

The sorting type

delegateObject

The reference to the delegate object

status

The required media status

stream

The required stream

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Discussion

Note: You can only use a stream or a status, not the two of them together. And in case you use them both, the method will only take the stream

Declared In

OlapicCurationMediaList.h

initWithSorting:delegate:status:stream:source:

Initialize with the sorting, the delegate reference, a specific status or stream and the media source (like instagram or twitter)

- (id)initWithSorting:(OlapicCurationMediaListSortingType)sort delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicMediaStatus *)status stream:(OlapicStreamEntity *)stream source:(NSString *)source

Parameters

sort

The sorting type

delegateObject

The reference to the delegate object

status

The required media status

stream

The required stream

source

The media source

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Discussion

Note: You can only use a stream or a status, not the two of them together. And in case you use them both, the method will only take the stream

Declared In

OlapicCurationMediaList.h

initWithSorting:delegate:status:stream:source:mediaPerPage:

Initialize with the sorting, the delegate reference, a specific status or stream, the media source (like instagram or twitter) and the amount of media per page that are going going to be downloaded

- (id)initWithSorting:(OlapicCurationMediaListSortingType)sort delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicMediaStatus *)status stream:(OlapicStreamEntity *)stream source:(NSString *)source mediaPerPage:(NSInteger)perPage

Parameters

sort

The sorting type

delegateObject

The reference to the delegate object

status

The required media status

stream

The required stream

source

The media source

perPage

The number of media per page

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Discussion

Note: You can only use a stream or a status, not the two of them together. And in case you use them both, the method will only take the stream

Declared In

OlapicCurationMediaList.h

initWithSorting:delegate:status:stream:source:mediaPerPage:offset:

Initialize with the sorting, the delegate reference, a specific status or stream, the media source (like instagram or twitter), the amount of media per page that are going going to be downloaded and set an offset

- (id)initWithSorting:(OlapicCurationMediaListSortingType)sort delegate:(id<OlapicMediaListDelegate> __weak)delegateObject status:(OlapicMediaStatus *)status stream:(OlapicStreamEntity *)stream source:(NSString *)source mediaPerPage:(NSInteger)perPage offset:(NSInteger)offset

Parameters

sort

The sorting type

delegateObject

The reference to the delegate object

status

The required media status

stream

The required stream

source

The media source

perPage

The number of media per page

offset

The offset to change the page

Return Value

The OlapicCurationMediaList instance

Availability

v1.0

Discussion

Note: You can only use a stream or a status, not the two of them together. And in case you use them both, the method will only take the stream

Declared In

OlapicCurationMediaList.h