iPhone/Classes/MyViewController.h
author Dan Preston <danpreston@codechemistry.com>
Tue May 05 15:10:15 2009 -0700 (2009-05-05)
changeset 37 7c7d5a0cb4d6
permissions -rwxr-xr-x
Fixed the leak of SecIdentityRef objects in a while loop.
snej@25
     1
/*
snej@25
     2
snej@25
     3
File: MyViewController.h
snej@25
     4
Abstract: A view controller responsible for managing the Hello World view.
snej@25
     5
snej@25
     6
Version: 1.7
snej@25
     7
snej@25
     8
Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple Inc.
snej@25
     9
("Apple") in consideration of your agreement to the following terms, and your
snej@25
    10
use, installation, modification or redistribution of this Apple software
snej@25
    11
constitutes acceptance of these terms.  If you do not agree with these terms,
snej@25
    12
please do not use, install, modify or redistribute this Apple software.
snej@25
    13
snej@25
    14
In consideration of your agreement to abide by the following terms, and subject
snej@25
    15
to these terms, Apple grants you a personal, non-exclusive license, under
snej@25
    16
Apple's copyrights in this original Apple software (the "Apple Software"), to
snej@25
    17
use, reproduce, modify and redistribute the Apple Software, with or without
snej@25
    18
modifications, in source and/or binary forms; provided that if you redistribute
snej@25
    19
the Apple Software in its entirety and without modifications, you must retain
snej@25
    20
this notice and the following text and disclaimers in all such redistributions
snej@25
    21
of the Apple Software.
snej@25
    22
Neither the name, trademarks, service marks or logos of Apple Inc. may be used
snej@25
    23
to endorse or promote products derived from the Apple Software without specific
snej@25
    24
prior written permission from Apple.  Except as expressly stated in this notice,
snej@25
    25
no other rights or licenses, express or implied, are granted by Apple herein,
snej@25
    26
including but not limited to any patent rights that may be infringed by your
snej@25
    27
derivative works or by other works in which the Apple Software may be
snej@25
    28
incorporated.
snej@25
    29
snej@25
    30
The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
snej@25
    31
WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
snej@25
    32
WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
snej@25
    33
PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
snej@25
    34
COMBINATION WITH YOUR PRODUCTS.
snej@25
    35
snej@25
    36
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
snej@25
    37
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
snej@25
    38
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
snej@25
    39
ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR
snej@25
    40
DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF
snej@25
    41
CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF
snej@25
    42
APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
snej@25
    43
snej@25
    44
Copyright (C) 2008 Apple Inc. All Rights Reserved.
snej@25
    45
snej@25
    46
*/
snej@25
    47
snej@25
    48
#import <UIKit/UIKit.h>
snej@25
    49
#import "BLIPConnection.h"
snej@25
    50
snej@25
    51
@interface MyViewController : UIViewController <UITextFieldDelegate, 
snej@25
    52
                                                TCPListenerDelegate,
snej@25
    53
                                                BLIPConnectionDelegate> {
snej@25
    54
	
snej@25
    55
	IBOutlet UITextField *textField;
snej@25
    56
	IBOutlet UILabel *label;
snej@25
    57
	NSString *string;
snej@25
    58
    BLIPListener *_listener;
snej@25
    59
}
snej@25
    60
snej@25
    61
@property (nonatomic, retain) UITextField *textField;
snej@25
    62
@property (nonatomic, retain) UILabel *label;
snej@25
    63
@property (nonatomic, copy) NSString *string;
snej@25
    64
snej@25
    65
- (void)updateString;
snej@25
    66
snej@25
    67
@end
snej@25
    68