TCViewController.h 361 B

123456789101112131415161718
  1. //
  2. // TCViewController.h
  3. // TestChat
  4. //
  5. // Created by Mike Lewis on 1/28/12.
  6. // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TCViewController : UITableViewController
  10. @property (nonatomic, retain) IBOutlet UITextView *inputView;
  11. - (IBAction)reconnect:(id)sender;
  12. - (IBAction)sendPing:(id)sender;
  13. @end