1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // SignDetailVC.m
- // LN_School
- //
- // Created by EchoShacolee on 2017/12/13.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import "SignDetailVC.h"
- @interface SignDetailVC ()
- @end
- @implementation SignDetailVC
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.navigationItem.title = @"报名点详情";
- [self setSegmentControllWithTitles:@[@"基本信息"] isBttomBar:NO];
- }
- -(void)setData{
- _keysArr = @[
- @[@"所属机构",@"JXMC"],
- @[@"报名点名称",@"TSP_NAME"],
- @[@"电话",@"TSP_PHONE"],
- @[@"报名点地址",@"TSP_ADDRESS"],
- @[@"创建人",@"TSP_CREATE_USER_NAME"],
- @[@"创建时间",@"TSP_CREATE_DATE"],
- @[@"最后修改人",@"TSP_UPDATE_USER_NAME"],
- @[@"最后修改时间",@"TSP_UPDATE_DATE"],
- @[@"备注",@"TSP_MEMO"]
- ];
-
- [super setData];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- @end
|