TCChatCell.h 442 B

1234567891011121314151617
  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 TCChatCell : UITableViewCell
  11. @property (nonatomic, retain) IBOutlet UITextView *textView;
  12. @property (nonatomic, retain) IBOutlet UILabel *nameLabel;
  13. @end