24 lines
577 B
Objective-C
24 lines
577 B
Objective-C
//
|
||
// AlarmViewController.h
|
||
// k-observer-iphone
|
||
//
|
||
// Created by vvv ооо on 26.08.12.
|
||
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
|
||
@interface AlarmViewController : UIViewController<UIScrollViewDelegate, UITextViewDelegate>
|
||
|
||
- (void)textViewDidBeginEditing:(UITextView *)textView;
|
||
|
||
- (void)finishEditingMessage;
|
||
- (IBAction)OnRejectPressed;
|
||
- (IBAction)OnThrowPressed;
|
||
- (IBAction)OnCarouselPressed;
|
||
- (IBAction)OnAssaultPressed;
|
||
- (IBAction)OnOtherPressed;
|
||
- (IBAction)OnSendAdditionalMessage;
|
||
|
||
@end
|