TCChatCell.h 337 B

12345678910111213141516
  1. //
  2. // TCChatCell.h
  3. // SocketRocket
  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 TCChatCell : UITableViewCell
  10. @property (nonatomic, retain) IBOutlet UITextView *textView;
  11. @property (nonatomic, retain) IBOutlet UILabel *nameLabel;
  12. @end