Inherits from UIView
Declared in TKEntityPropertyGroupEditorsView.h

Overview

A class that represents editors container.

Properties

items

The items that will be arranged.

@property (nonatomic, strong, readonly) NSArray *items

Declared In

TKEntityPropertyGroupEditorsView.h

layout

A layout used to arrange the editors.

@property (nonatomic) id<TKLayout> layout

Declared In

TKEntityPropertyGroupEditorsView.h

Instance Methods

addItem:

Add an item to the editors view.

- (void)addItem:(UIView *)item

Parameters

item

The item that will be added.

Declared In

TKEntityPropertyGroupEditorsView.h

addItem:atIndex:

Add an item to the editors view at specified index.

- (void)addItem:(UIView *)item atIndex:(NSUInteger)index

Parameters

item

The item that will be added.

index

The index of the item.

Declared In

TKEntityPropertyGroupEditorsView.h

removeAllItems

Remove all items from the editor view.

- (void)removeAllItems

Declared In

TKEntityPropertyGroupEditorsView.h

removeItem:

Remove an item from the editor view.

- (void)removeItem:(UIView *)item

Parameters

item

The item that will be removed.

Declared In

TKEntityPropertyGroupEditorsView.h

updateLayout

Updates the layout.

- (void)updateLayout

Declared In

TKEntityPropertyGroupEditorsView.h