DKMessageTableView.m 678 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // DKMessageTableView.m
  3. // MessageDisplayExample
  4. //
  5. // Created by HUAJIE-1 on 14-4-24.
  6. // Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
  7. //
  8. #import "DKMessageTableView.h"
  9. @implementation DKMessageTableView
  10. - (id)initWithFrame:(CGRect)frame {
  11. self = [super initWithFrame:frame];
  12. if (self) {
  13. // Initialization code
  14. }
  15. return self;
  16. }
  17. - (void)dealloc {
  18. }
  19. /*
  20. // Only override drawRect: if you perform custom drawing.
  21. // An empty implementation adversely affects performance during animation.
  22. - (void)drawRect:(CGRect)rect
  23. {
  24. // Drawing code
  25. }
  26. */
  27. @end