XMGTabBarVc.m 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // XMGTabBarVc.m
  3. // shiku_im
  4. //
  5. // Created by os on 2020/7/11.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import "XMGTabBarVc.h"
  9. @interface XMGTabBarVc ()
  10. @end
  11. @implementation XMGTabBarVc
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. // Uncomment the following line to preserve selection between presentations.
  15. // self.clearsSelectionOnViewWillAppear = NO;
  16. // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
  17. // self.navigationItem.rightBarButtonItem = self.editButtonItem;
  18. }
  19. #pragma mark - Table view data source
  20. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  21. #warning Incomplete implementation, return the number of sections
  22. return 0;
  23. }
  24. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  25. #warning Incomplete implementation, return the number of rows
  26. return 0;
  27. }
  28. /*
  29. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  30. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:<#@"reuseIdentifier"#> forIndexPath:indexPath];
  31. // Configure the cell...
  32. return cell;
  33. }
  34. */
  35. /*
  36. // Override to support conditional editing of the table view.
  37. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
  38. // Return NO if you do not want the specified item to be editable.
  39. return YES;
  40. }
  41. */
  42. /*
  43. // Override to support editing the table view.
  44. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
  45. if (editingStyle == UITableViewCellEditingStyleDelete) {
  46. // Delete the row from the data source
  47. [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
  48. } else if (editingStyle == UITableViewCellEditingStyleInsert) {
  49. // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
  50. }
  51. }
  52. */
  53. /*
  54. // Override to support rearranging the table view.
  55. - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
  56. }
  57. */
  58. /*
  59. // Override to support conditional rearranging of the table view.
  60. - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
  61. // Return NO if you do not want the item to be re-orderable.
  62. return YES;
  63. }
  64. */
  65. /*
  66. #pragma mark - Navigation
  67. // In a storyboard-based application, you will often want to do a little preparation before navigation
  68. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  69. // Get the new view controller using [segue destinationViewController].
  70. // Pass the selected object to the new view controller.
  71. }
  72. */
  73. @end