SignDetailVC.m 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // SignDetailVC.m
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/12/13.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import "SignDetailVC.h"
  9. @interface SignDetailVC ()
  10. @end
  11. @implementation SignDetailVC
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. self.navigationItem.title = @"报名点详情";
  15. [self setSegmentControllWithTitles:@[@"基本信息"] isBttomBar:NO];
  16. }
  17. -(void)setData{
  18. _keysArr = @[
  19. @[@"所属机构",@"JXMC"],
  20. @[@"报名点名称",@"TSP_NAME"],
  21. @[@"电话",@"TSP_PHONE"],
  22. @[@"报名点地址",@"TSP_ADDRESS"],
  23. @[@"创建人",@"TSP_CREATE_USER_NAME"],
  24. @[@"创建时间",@"TSP_CREATE_DATE"],
  25. @[@"最后修改人",@"TSP_UPDATE_USER_NAME"],
  26. @[@"最后修改时间",@"TSP_UPDATE_DATE"],
  27. @[@"备注",@"TSP_MEMO"]
  28. ];
  29. [super setData];
  30. }
  31. - (void)didReceiveMemoryWarning {
  32. [super didReceiveMemoryWarning];
  33. // Dispose of any resources that can be recreated.
  34. }
  35. /*
  36. #pragma mark - Navigation
  37. // In a storyboard-based application, you will often want to do a little preparation before navigation
  38. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  39. // Get the new view controller using [segue destinationViewController].
  40. // Pass the selected object to the new view controller.
  41. }
  42. */
  43. @end