Differences From Artifact [8bcbc82352]:
- File
iOS/AddSiteController.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: 1554) [annotate] [blame] [check-ins using]
To Artifact [a0b21e026a]:
- File iOS/AddSiteController.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: 1638) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
20 21 22 23 24 25 26 | * POSSIBILITY OF SUCH DAMAGE. */ #import <UIKit/UIKit.h> #import "MainViewController.h" | | > | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | * POSSIBILITY OF SUCH DAMAGE. */ #import <UIKit/UIKit.h> #import "MainViewController.h" @interface AddSiteController: UITableViewController <UITableViewDelegate> @property (nonatomic, retain) IBOutlet UITextField *nameField; @property (nonatomic, retain) IBOutlet UITextField *lengthField; @property (nonatomic, retain) IBOutlet UISwitch *legacySwitch; @property (nonatomic, retain) IBOutlet UILabel *keyFileLabel; @property (retain) MainViewController *mainViewController; - (IBAction)done: (id)sender; - (IBAction)cancel: (id)sender; @end |