FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
PerformanceEditorController Class Reference
Inheritance diagram for PerformanceEditorController:
Collaboration diagram for PerformanceEditorController:

Instance Methods

(id) - initWithConnectionParams:
 
(id) - initWithConnectionParams:keyPath:
 
- Instance Methods inherited from EditorBaseController
(UITableViewCell *) - tableViewCellFromIdentifier:
 
(void) - adjustEditTextTableViewCell:
 

Detailed Description

Definition at line 15 of file PerformanceEditorController.h.

Method Documentation

◆ initWithConnectionParams:

- (id) initWithConnectionParams: (ConnectionParams *)  params

Definition at line 1 of file PerformanceEditorController.m.

21 :(ConnectionParams *)params
22{
23 return [self initWithConnectionParams:params keyPath:nil];
24}

◆ initWithConnectionParams:keyPath:

- (id) initWithConnectionParams: (ConnectionParams *)  params
keyPath: (NSString *)  keyPath 

Definition at line 1 of file PerformanceEditorController.m.

26 :(ConnectionParams *)params keyPath:(NSString *)keyPath;
27{
28 self = [super initWithStyle:UITableViewStyleGrouped];
29
30 if (self)
31 {
32 _params = [params retain];
33 _keyPath = (keyPath != nil ? [keyPath retain] : nil);
34 }
35
36 return self;
37}

The documentation for this class was generated from the following files: