PayAlert.m 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // PayAlert.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/30.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "PayAlert.h"
  9. #import "PayAlertCell.h"
  10. static UINib *ViewNib = nil;
  11. @interface PayAlert()<UITableViewDelegate,UITableViewDataSource>
  12. @end
  13. @implementation PayAlert
  14. + (instancetype)share
  15. {
  16. if (ViewNib == nil) {
  17. ViewNib = [UINib nibWithNibName:@"PayAlert" bundle:nil];
  18. }
  19. PayAlert *alert = [[ViewNib instantiateWithOwner:nil options:nil] lastObject];
  20. [alert setFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  21. alert.bgColor = [UIColor clearColor];
  22. alert.tableView.delegate = alert;
  23. alert.tableView.dataSource = alert;
  24. [alert.disBtn addTarget:alert action:@selector(dismiss) forControlEvents:UIControlEventTouchUpInside];
  25. alert.Constant.constant = 190 + 30 + 70 * 3;
  26. [alert.tableView reloadData];
  27. return alert;
  28. }
  29. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  30. {
  31. return 3;
  32. }
  33. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  34. {
  35. return [PayAlertCell configCellHeight];
  36. }
  37. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  38. {
  39. PayAlertCell * cell = [PayAlertCell configCell:tableView indexPath:indexPath];
  40. return cell;
  41. }
  42. - (void)show
  43. {
  44. [super show];
  45. }
  46. - (void)dismiss
  47. {
  48. [self dismissWithAnimation:kAlertAnimationBottom];
  49. }
  50. @end