WCTMultiSelect Class Reference

Inherits from WCTSelectBase : WCTChainCall : WCTCore : NSObject
Declared in WCTMultiSelect.h

Overview

Not Thread-safe

– nextMultiObject

Get next selected object. You can do an iteration using it.

 WCTMultiObject* multiObject = nil;
 while ((multiObject = [multiSelect nextMultiObject])) {
    Class1* object1 = [multiObject objectForKey:tableName1];
    Class2* object2 = [multiObject objectForKey:tableName2];
 }
- (WCTMultiObject *)nextMultiObject

Return Value

See the example above

Declared In

WCTMultiSelect.h

– allMultiObjects

Get all selected objects.

- (NSArray<WCTMultiObject*> *)allMultiObjects

Return Value

Array with all selected objects.

Declared In

WCTMultiSelect.h