APLOC2/Week4/datePlanner/datePlanner/ViewController.h

25 lines
471 B
C
Raw Normal View History

2013-02-27 15:14:48 +00:00
//
// ViewController.h
// datePlanner
//
// Created by Brent Marohnic on 2/19/13.
// Copyright (c) 2013 Brent Marohnic. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ViewController2.h"
@interface ViewController : UIViewController <viewController2Delegate>
{
IBOutlet UITextView *mainTextView;
2013-02-28 23:44:04 +00:00
IBOutlet UILabel *swipeLabel;
IBOutlet UIButton *saveButton;
2013-02-27 15:14:48 +00:00
2013-02-28 23:44:04 +00:00
UISwipeGestureRecognizer *rightSwiper;
2013-02-27 15:14:48 +00:00
}
2013-02-28 23:44:04 +00:00
-(IBAction)onSave:(id)sender;
2013-02-27 15:14:48 +00:00
@end