-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
788076e
commit 4ee35ca
Showing
593 changed files
with
57,306 additions
and
467 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// BaseModel.h | ||
// iDearQRCode | ||
// | ||
// Created by Mortimer on 17/5/22. | ||
// Copyright © 2017年 Mortimer. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface BaseModel : NSObject | ||
|
||
@property (nonatomic , copy) NSString * URL; | ||
@property (nonatomic , copy) NSString * name; | ||
@property (nonatomic , copy) NSString * doSometing; | ||
@property (nonatomic , copy) NSString * join_time; | ||
|
||
@property (nonatomic , assign) NSInteger count; | ||
@property (nonatomic , assign) CGFloat height; | ||
@property (nonatomic , copy) NSString * pickId; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// BaseModel.m | ||
// iDearQRCode | ||
// | ||
// Created by Mortimer on 17/5/22. | ||
// Copyright © 2017年 Mortimer. All rights reserved. | ||
// | ||
|
||
#import "BaseModel.h" | ||
|
||
@implementation BaseModel | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// BaseTableViewCell.h | ||
// iDearQRCode | ||
// | ||
// Created by Mortimer on 17/5/22. | ||
// Copyright © 2017年 Mortimer. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
typedef enum { | ||
selectCellNormal = 0, | ||
selectCellDelete, | ||
selectCellCombine, | ||
selectCellError | ||
} selectCellType; | ||
@interface BaseTableViewCell : UITableViewCell | ||
|
||
|
||
|
||
|
||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// | ||
// BaseTableViewCell.m | ||
// iDearQRCode | ||
// | ||
// Created by Mortimer on 17/5/22. | ||
// Copyright © 2017年 Mortimer. All rights reserved. | ||
// | ||
|
||
#import "BaseTableViewCell.h" | ||
|
||
|
||
@implementation BaseTableViewCell | ||
|
||
|
||
-(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{ | ||
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) { | ||
self.backgroundColor = back_Color; | ||
[self setupDefaultCell]; | ||
} | ||
return self; | ||
} | ||
|
||
-(void)setupDefaultCell{ | ||
|
||
} | ||
|
||
|
||
|
||
|
||
|
||
|
||
- (void)awakeFromNib { | ||
[super awakeFromNib]; | ||
// Initialization code | ||
} | ||
|
||
- (void)setSelected:(BOOL)selected animated:(BOOL)animated { | ||
[super setSelected:selected animated:animated]; | ||
|
||
// Configure the view for the selected state | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.