Ray Zhang 9 лет назад
Родитель
Сommit
57782453dd

+ 0 - 17
Ants Contract/AntsContract/AntsContract/RootViewController.h

@@ -1,17 +0,0 @@
-//
-//  ViewController.h
-//  AntsContract
-//
-//  Created by Ray on 12/16/16.
-//  Copyright © 2016 United Software Applications, Inc. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-@interface RootViewController : UIViewController
-@property (strong, nonatomic) IBOutlet UIButton *buttonHIC;
-
-@property (strong, nonatomic) IBOutlet UIButton *buttonSRL;
-
-@end
-

+ 0 - 54
Ants Contract/AntsContract/AntsContract/RootViewController.m

@@ -1,54 +0,0 @@
-//
-//  ViewController.m
-//  AntsContract
-//
-//  Created by Ray on 12/16/16.
-//  Copyright © 2016 United Software Applications, Inc. All rights reserved.
-//
-
-#import "RootViewController.h"
-#import "DocumentPageViewController.h"
-
-@interface RootViewController ()
-
-@end
-
-@implementation RootViewController
-
-- (void)viewDidLoad {
-    [super viewDidLoad];
-    // Do any additional setup after loading the view, typically from a nib.
-}
-
-
-- (void)didReceiveMemoryWarning {
-    [super didReceiveMemoryWarning];
-    // Dispose of any resources that can be recreated.
-}
-
-- (IBAction)OnHICClick:(id)sender {
-    
-    
-    
-
-    
-    DocumentPageViewController* dvc = [self.storyboard instantiateViewControllerWithIdentifier:@"DocumentPageViewController" ];
-    
-    dvc.templateName = @"GEIC - Home Improvement Contract 2016.json";
-    dvc.pdfName = @"GEIC - Home Improvement Contract 2016.pdf";
-
-    [self.navigationController pushViewController:dvc animated:true];
-}
-- (IBAction)OnSRLClick:(id)sender {
-    
-    DocumentPageViewController* dvc = [self.storyboard instantiateViewControllerWithIdentifier:@"DocumentPageViewController" ];
-
-    dvc.templateName = @"SUBCONTRACTORS REFERRAL LIST.json";
-    dvc.pdfName = @"SUBCONTRACTORS REFERRAL LIST.pdf";
-    
-    [self.navigationController pushViewController:dvc animated:true];
-}
-
-
-
-@end