MMBaseRichContentCell.m 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // MMBaseRichContentCell.m
  3. // RichTextEditDemo
  4. //
  5. // Created by aron on 2017/7/21.
  6. // Copyright © 2017年 aron. All rights reserved.
  7. //
  8. #import "MMBaseRichContentCell.h"
  9. @implementation MMBaseRichContentCell
  10. #pragma mark - ......::::::: public :::::::......
  11. - (UITableView*)containerTableView {
  12. UITableView* containerTableView = (UITableView*)self.superview;
  13. while (containerTableView != nil && ![containerTableView isKindOfClass:[UITableView class]]) {
  14. containerTableView = (UITableView*)containerTableView.superview;
  15. }
  16. return containerTableView;
  17. }
  18. - (void)handleReloadSelf {
  19. // 获取Container TableView
  20. UITableView* containerTableView = [self containerTableView];
  21. if (containerTableView) {
  22. NSIndexPath* indexPath = [containerTableView indexPathForCell:self];
  23. if (indexPath) {
  24. [containerTableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
  25. } else {
  26. [containerTableView reloadData];
  27. }
  28. }
  29. }
  30. - (NSIndexPath*)curIndexPath {
  31. UITableView* containerTableView = [self containerTableView];
  32. NSIndexPath* indexPath = [containerTableView indexPathForCell:self];
  33. return indexPath;
  34. }
  35. @end