1 // 2 // Xd3iOSViewController.h 3 // xdelta3-ios-test 4 // 5 // Created by Joshua MacDonald on 6/16/12. 6 // Copyright (c) 2011, 2012 Joshua MacDonald. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h> 10 11 @interface Xd3iOSViewController : UIViewController <UITextViewDelegate> { 12 NSString *inputSeed; 13 } 14 - (IBAction)startTest:(id)sender; 15 @property (weak, nonatomic) IBOutlet UITextField *theSeed; 16 @property (weak, nonatomic) IBOutlet UITextView *theView; 17 @property (atomic, retain) NSMutableString *theOutput; 18 @property (nonatomic) BOOL inTest; 19 20 @end