SCPropertyGroupArray
@interface SCPropertyGroupArray : NSObject {
NSMutableArray *propertyGroups;
}
This class functions as an array of SCPropertyGroup objects.
See
SCPropertyGroup.-
Undocumented
Declaration
Objective-C
NSMutableArray *propertyGroups
-
Allocates and returns an initialized ‘SCPropertyGroupArray’.
Declaration
Objective-C
+ (instancetype)groupArray;
-
///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////
Declaration
Objective-C
@property (nonatomic, readonly) NSInteger groupCount; -
Add a group to the array.
Declaration
Objective-C
- (void)addGroup:(SCPropertyGroup *)group; -
Add a group at the given index.
Declaration
Objective-C
- (void)insertGroup:(SCPropertyGroup *)group atIndex:(NSInteger)index; -
Return group at the given index.
Declaration
Objective-C
- (SCPropertyGroup *)groupAtIndex:(NSInteger)index; -
Return group with the given header title.
Declaration
Objective-C
- (SCPropertyGroup *)groupByHeaderTitle:(NSString *)headerTitle; -
Remove group at the given index.
Declaration
Objective-C
- (void)removeGroupAtIndex:(NSInteger)index; -
Remove all groups.
Declaration
Objective-C
- (void)removeAllGroups;
View on GitHub
Install in Dash
SCPropertyGroupArray Class Reference