2
0

Initial working password application with types and history.

This commit is contained in:
Maarten Billemont
2012-01-05 01:44:15 +01:00
parent d7a448dfe0
commit cab35df79b
62 changed files with 1394 additions and 862 deletions

View File

@@ -6,8 +6,19 @@
// Copyright (c) 2011 Lyndir. All rights reserved.
//
@interface OPMainViewController : UITableViewController
#import "OPTypeViewController.h"
#import "OPElementEntity.h"
#import "OPSearchDelegate.h"
@property (strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@interface OPMainViewController : UITableViewController <OPTypeDelegate, UITextFieldDelegate, UISearchBarDelegate, OPSearchResultsDelegate>
@property (strong, nonatomic) OPElementEntity *activeElement;
@property (strong, nonatomic) IBOutlet OPSearchDelegate *searchResultsController;
@property (weak, nonatomic) IBOutlet UITextField *contentField;
@property (weak, nonatomic) IBOutlet UITextView *contentTextView;
@property (weak, nonatomic) IBOutlet UILabel *typeLabel;
@property (weak, nonatomic) IBOutlet UISegmentedControl *contentType;
- (IBAction)didChangeContentType:(UISegmentedControl *)sender;
@end