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)nextObject
Return Value
The real type of WCTObject depends on your selection and ORM.
Declared In
WCTSelect.h
– allObjects
Get all selected objects.
- (NSArray *)allObjects
Return Value
The NSArray collection of WCTObject. The real type of WCTObject depends on your selection and ORM.
Declared In
WCTSelect.h