Differences From Artifact [e5d1d1c4ed]:
- File
iOS/ShowDetailsController.h
— part of check-in
[0ac34d09b9]
at
2017-10-15 22:36:46
on branch trunk
— Disable modules and force category references
Modules do not work well without frameworks. (user: js, size: 1699) [annotate] [blame] [check-ins using]
To Artifact [7882b18344]:
- File iOS/ShowDetailsController.h — part of check-in [43dbe5c8cb] at 2017-11-26 20:09:53 on branch trunk — iOS: Add initial parts of support for key files (user: js, size: 1786) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | @interface ShowDetailsController: UITableViewController <UITableViewDelegate, UITextFieldDelegate> { OFString *_name; size_t _length; bool _legacy; } @property (retain, nonatomic) IBOutlet UITextField *nameField; @property (retain, nonatomic) IBOutlet UITextField *lengthField; @property (retain, nonatomic) IBOutlet UISwitch *legacySwitch; @property (retain, nonatomic) IBOutlet UITextField *passphraseField; @property (retain) MainViewController *mainViewController; - (IBAction)remove: (id)sender; @end | > > | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | @interface ShowDetailsController: UITableViewController <UITableViewDelegate, UITextFieldDelegate> { OFString *_name; size_t _length; bool _legacy; OFString *_keyFile; } @property (retain, nonatomic) IBOutlet UITextField *nameField; @property (retain, nonatomic) IBOutlet UITextField *lengthField; @property (retain, nonatomic) IBOutlet UISwitch *legacySwitch; @property (retain, nonatomic) IBOutlet UITextField *keyFileField; @property (retain, nonatomic) IBOutlet UITextField *passphraseField; @property (retain) MainViewController *mainViewController; - (IBAction)remove: (id)sender; @end |