ASPointsHomeViewController.m 676 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ASPointsHomeViewController.m
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/19.
  6. //
  7. #import "ASPointsHomeViewController.h"
  8. @interface ASPointsHomeViewController ()
  9. @end
  10. @implementation ASPointsHomeViewController
  11. - (void)viewDidLoad {
  12. [super viewDidLoad];
  13. // Do any additional setup after loading the view.
  14. }
  15. /*
  16. #pragma mark - Navigation
  17. // In a storyboard-based application, you will often want to do a little preparation before navigation
  18. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  19. // Get the new view controller using [segue destinationViewController].
  20. // Pass the selected object to the new view controller.
  21. }
  22. */
  23. @end