Jelajahi Sumber

-- 소스 수정

Jason Lee 10 tahun lalu
induk
melakukan
7cf7729865

+ 13 - 0
kneet2/Classes/Categories/UIView+Additions.h

@@ -0,0 +1,13 @@
+//
+//  UIView+Additions.h
+//  kneet2
+//
+//  Created by Jason Lee on 10/2/15.
+//  Copyright © 2015 ntels. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@interface UIView (Additions)
+
+@end

+ 13 - 0
kneet2/Classes/Categories/UIView+Additions.m

@@ -0,0 +1,13 @@
+//
+//  UIView+Additions.m
+//  kneet2
+//
+//  Created by Jason Lee on 10/2/15.
+//  Copyright © 2015 ntels. All rights reserved.
+//
+
+#import "UIView+Additions.h"
+
+@implementation UIView (Additions)
+
+@end

+ 20 - 0
kneet2/Classes/ViewControllers/MainScreens/MainViewController.h

@@ -0,0 +1,20 @@
+//
+//  MainViewController.h
+//  kneet2
+//
+//  Created by Jason Lee on 10/2/15.
+//  Copyright © 2015 ntels. All rights reserved.
+//
+
+#import "JDViewController.h"
+
+@interface MainViewController : JDViewController
+
+
+#pragma mark - Properties
+
+
+#pragma mark - Instance Methods
+
+
+@end

+ 55 - 0
kneet2/Classes/ViewControllers/MainScreens/MainViewController.m

@@ -0,0 +1,55 @@
+//
+//  MainViewController.m
+//  kneet2
+//
+//  Created by Jason Lee on 10/2/15.
+//  Copyright © 2015 ntels. All rights reserved.
+//
+
+#import "MainViewController.h"
+
+
+@interface MainViewController () {
+
+}
+@end
+
+
+#pragma mark - Class Definition
+
+@implementation MainViewController
+
+
+- (void)viewDidLoad {
+    [super viewDidLoad];
+    // Do any additional setup after loading the view.
+    
+    [self initUI];
+    [self prepareViewDidLoad];
+}
+
+
+- (void)initUI {
+    
+}
+
+- (void)prepareViewDidLoad {
+    
+}
+
+#pragma mark - Main Logic
+
+
+
+#pragma mark - UI Events
+
+
+
+#pragma mark - MemoryWarning
+- (void)didReceiveMemoryWarning
+{
+    [super didReceiveMemoryWarning];
+    // Dispose of any resources that can be recreated.
+}
+
+@end

+ 0 - 46
kneet2/Classes/ViewControllers/MainScreens/MobilesOverViewController.h

@@ -1,46 +0,0 @@
-//
-//  MobilesOverViewController.h
-//  kneet
-//
-//  Created by Jason Lee on 6/12/15.
-//  Copyright (c) 2015 ntels. All rights reserved.
-//
-
-#import "JDViewController.h"
-@protocol MobileDeviceModel;
-@class CustomLabel;
-@class CustomButton;
-
-@interface MobilesOverViewController : JDViewController
-
-
-#pragma mark - Properties
-@property (strong, nonatomic) NSArray<MobileDeviceModel> *mobileList;
-@property (assign, nonatomic) BOOL checkedAutoLogin;
-
-@property (weak, nonatomic) IBOutlet UITableView *tableView;
-@property (weak, nonatomic) IBOutlet CustomLabel *lblActionInfo;
-
-@property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
-@property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
-
-#pragma mark - Instance Methods
-
-- (IBAction)btnConfirmTouched:(id)sender;
-- (IBAction)btnCancelTouched:(id)sender;
-
-@end
-
-@class CustomRadioButton;
-
-@interface MobilesOverTitleViewCell : UITableViewCell
-@property (weak, nonatomic) IBOutlet CustomLabel *lblNotify;
-@end
-
-@interface MobilesOverTableViewCell : UITableViewCell
-
-@property (weak, nonatomic) IBOutlet CustomLabel *lblMobileName;
-@property (weak, nonatomic) IBOutlet CustomLabel *lblCreateDate;
-@property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
-
-@end

File diff ditekan karena terlalu besar
+ 0 - 230
kneet2/Classes/ViewControllers/MainScreens/MobilesOverViewController.m