TCViewController.h 464 B

12345678910111213141516171819
  1. //
  2. // Copyright 2012 Square Inc.
  3. // Portions Copyright (c) 2016-present, Facebook, Inc.
  4. // All rights reserved.
  5. //
  6. // This source code is licensed under the license found in the
  7. // LICENSE-examples file in the root directory of this source tree.
  8. //
  9. #import <UIKit/UIKit.h>
  10. @interface TCViewController : UITableViewController
  11. @property (nonatomic, retain) IBOutlet UITextView *inputView;
  12. - (IBAction)reconnect:(id)sender;
  13. - (IBAction)sendPing:(id)sender;
  14. @end