RSS

(root)/iphone/tappity : 46 : tappity/source/BonjourSupport/SimpleEditViewController.h

To get this branch, use:
bzr branch /browse/iphone/tappity

« back to all changes in this revision

Viewing changes to tappity/source/BonjourSupport/SimpleEditViewController.h

Dömötör Gulyás
2009-10-27 01:03:19
Revision ID: dognotdog@gmail.com-20091027000319-1vrkixkgf9lkud6g
adds tappity project

Show diffs side-by-side

added added

removed removed

 
1
/*
 
2
    File: SimpleEditViewController.h
 
3
Abstract: View controller which allows the user to enter a small amount of text.
 
4
 
 
5
 Version: 2.8
 
6
 
 
7
Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple
 
8
Inc. ("Apple") in consideration of your agreement to the following
 
9
terms, and your use, installation, modification or redistribution of
 
10
this Apple software constitutes acceptance of these terms.  If you do
 
11
not agree with these terms, please do not use, install, modify or
 
12
redistribute this Apple software.
 
13
 
 
14
In consideration of your agreement to abide by the following terms, and
 
15
subject to these terms, Apple grants you a personal, non-exclusive
 
16
license, under Apple's copyrights in this original Apple software (the
 
17
"Apple Software"), to use, reproduce, modify and redistribute the Apple
 
18
Software, with or without modifications, in source and/or binary forms;
 
19
provided that if you redistribute the Apple Software in its entirety and
 
20
without modifications, you must retain this notice and the following
 
21
text and disclaimers in all such redistributions of the Apple Software.
 
22
Neither the name, trademarks, service marks or logos of Apple Inc. may
 
23
be used to endorse or promote products derived from the Apple Software
 
24
without specific prior written permission from Apple.  Except as
 
25
expressly stated in this notice, no other rights or licenses, express or
 
26
implied, are granted by Apple herein, including but not limited to any
 
27
patent rights that may be infringed by your derivative works or by other
 
28
works in which the Apple Software may be incorporated.
 
29
 
 
30
The Apple Software is provided by Apple on an "AS IS" basis.  APPLE
 
31
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
 
32
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
 
33
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
 
34
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
 
35
 
 
36
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
 
37
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
38
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
39
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
 
40
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
 
41
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
 
42
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
 
43
POSSIBILITY OF SUCH DAMAGE.
 
44
 
 
45
Copyright (C) 2009 Apple Inc. All Rights Reserved.
 
46
 
 
47
*/
 
48
 
 
49
#import <UIKit/UIKit.h>
 
50
 
 
51
@class SimpleEditViewController;
 
52
 
 
53
@protocol SimpleEditViewControllerDelegate <NSObject>
 
54
@required
 
55
// This method will be invoked when the user taps the 'Done' or 'Cancel' buttons.
 
56
// The text parameter will be nil if the user taps the 'Cancel' button.
 
57
- (void) simpleEditViewController:(SimpleEditViewController*)sevc didGetText:(NSString*)text;
 
58
@end
 
59
 
 
60
@interface SimpleEditViewController : UIViewController <UITextFieldDelegate> {
 
61
        id<SimpleEditViewControllerDelegate> _delegate;
 
62
        UITextField* _textField;
 
63
        BOOL cancelling;
 
64
}
 
65
 
 
66
@property(nonatomic, assign) id<SimpleEditViewControllerDelegate> delegate;
 
67
 
 
68
- (id)initWithTitle:(NSString*)title currentText:(NSString*)current;
 
69
 
 
70
@end

Loggerhead 1.17 is a web-based interface for Bazaar branches