WCTSelect Class Reference
| Inherits from | WCTSelectBase : WCTChainCall : WCTCore : NSObject |
|---|---|
| Declared in | WCTSelect.h |
– nextObject
Get next selected object. You can do an iteration using it.
WCTObject* object = nil;
while ((object = [select nextObject]) {
}
- (id)nextObjectReturn Value
The real type of WCTObject depends on your selection and ORM.
Declared In
WCTSelect.h
– allObjects
Get all selected objects.
- (NSArray *)allObjectsReturn Value
The NSArray collection of WCTObject. The real type of WCTObject depends on your selection and ORM.
Declared In
WCTSelect.h