Commit f42bd4cf authored by 曹云霄's avatar 曹云霄

修改项说明:积分开发

parent 411e96c3
//
// IntegralDetailsTableViewCell.h
// Lighting
//
// Created by 曹云霄 on 2016/11/21.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface IntegralDetailsTableViewCell : UITableViewCell
/**
积分类型
*/
@property (weak, nonatomic) IBOutlet UILabel *integralTypeLabel;
/**
生成时间
*/
@property (weak, nonatomic) IBOutlet UILabel *integralTimeLabel;
/**
积分数
*/
@property (weak, nonatomic) IBOutlet UILabel *integralNumberLabel;
@end
//
// IntegralDetailsTableViewCell.m
// Lighting
//
// Created by 曹云霄 on 2016/11/21.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import "IntegralDetailsTableViewCell.h"
@implementation IntegralDetailsTableViewCell
- (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
//
// IntegralDetailsViewController.h
// Lighting
//
// Created by 曹云霄 on 2016/11/21.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import "BaseViewController.h"
@interface IntegralDetailsViewController : BaseViewController
/**
积分详情
*/
@property (weak, nonatomic) IBOutlet UITableView *integralDetailsTableView;
@end
//
// IntegralDetailsViewController.m
// Lighting
//
// Created by 曹云霄 on 2016/11/21.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import "IntegralDetailsViewController.h"
@interface IntegralDetailsViewController ()
@end
@implementation IntegralDetailsViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (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
......@@ -53,6 +53,8 @@
2928F83B1CD0A0CE0036D761 /* CustomTabbarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2928F83A1CD0A0CE0036D761 /* CustomTabbarController.m */; };
2928F8421CD0ABAC0036D761 /* ShoppingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2928F8411CD0ABAC0036D761 /* ShoppingViewController.m */; };
292A14311CE81D1D00EB4430 /* AddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 292A14301CE81D1D00EB4430 /* AddressModel.m */; };
292AD2001DE309C1003EC56E /* IntegralDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 292AD1FF1DE309C1003EC56E /* IntegralDetailsViewController.m */; };
292AD2041DE30A5F003EC56E /* IntegralDetailsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 292AD2031DE30A5F003EC56E /* IntegralDetailsTableViewCell.m */; };
293163FA1DCE3CBA0075129D /* LuckyDrawDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 293163F91DCE3CBA0075129D /* LuckyDrawDetailsViewController.m */; };
293164001DCE3F6D0075129D /* NotDrawTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293163FF1DCE3F6D0075129D /* NotDrawTableViewCell.m */; };
293164031DCE3F780075129D /* UsedDrawTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 293164021DCE3F780075129D /* UsedDrawTableViewCell.m */; };
......@@ -290,6 +292,10 @@
2928F8411CD0ABAC0036D761 /* ShoppingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppingViewController.m; sourceTree = "<group>"; };
292A142F1CE81D1D00EB4430 /* AddressModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressModel.h; sourceTree = "<group>"; };
292A14301CE81D1D00EB4430 /* AddressModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressModel.m; sourceTree = "<group>"; };
292AD1FE1DE309C1003EC56E /* IntegralDetailsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IntegralDetailsViewController.h; sourceTree = "<group>"; };
292AD1FF1DE309C1003EC56E /* IntegralDetailsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IntegralDetailsViewController.m; sourceTree = "<group>"; };
292AD2021DE30A5F003EC56E /* IntegralDetailsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IntegralDetailsTableViewCell.h; sourceTree = "<group>"; };
292AD2031DE30A5F003EC56E /* IntegralDetailsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IntegralDetailsTableViewCell.m; sourceTree = "<group>"; };
293163F81DCE3CBA0075129D /* LuckyDrawDetailsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LuckyDrawDetailsViewController.h; sourceTree = "<group>"; };
293163F91DCE3CBA0075129D /* LuckyDrawDetailsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LuckyDrawDetailsViewController.m; sourceTree = "<group>"; };
293163FE1DCE3F6D0075129D /* NotDrawTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotDrawTableViewCell.h; sourceTree = "<group>"; };
......@@ -920,6 +926,15 @@
name = addressSelectedModel;
sourceTree = "<group>";
};
292AD2011DE30A35003EC56E /* Cells */ = {
isa = PBXGroup;
children = (
292AD2021DE30A5F003EC56E /* IntegralDetailsTableViewCell.h */,
292AD2031DE30A5F003EC56E /* IntegralDetailsTableViewCell.m */,
);
name = Cells;
sourceTree = "<group>";
};
293393501CD329EC000D997B /* controller */ = {
isa = PBXGroup;
children = (
......@@ -1042,6 +1057,9 @@
children = (
295DE56A1DDC5DFA00E27725 /* GuideIntegralViewController.h */,
295DE56B1DDC5DFA00E27725 /* GuideIntegralViewController.m */,
292AD1FE1DE309C1003EC56E /* IntegralDetailsViewController.h */,
292AD1FF1DE309C1003EC56E /* IntegralDetailsViewController.m */,
292AD2011DE30A35003EC56E /* Cells */,
);
name = GuideIntegral;
sourceTree = "<group>";
......@@ -2038,6 +2056,7 @@
293393551CD3379E000D997B /* ShoppingTableViewCell.m in Sources */,
2916A73E1D70232700644C8C /* RebateViewController.m in Sources */,
29D260F51CEEAE2800A9787D /* FullScreenViewController.m in Sources */,
292AD2041DE30A5F003EC56E /* IntegralDetailsTableViewCell.m in Sources */,
2985AEA31CE72F1500704C91 /* NSObject+ZXPUnicode.m in Sources */,
29EAAE951CDC414C00C4DBA2 /* SeceneLibraryCollectionViewCell.m in Sources */,
2949BAC21CD3055A0049385A /* MMExampleDrawerVisualStateManager.m in Sources */,
......@@ -2158,6 +2177,7 @@
29D260F81CEEAF2D00A9787D /* FullScreenViewCell.m in Sources */,
290887061CE58BC2000B7097 /* screeningButton.m in Sources */,
295DEAC21DB786B8006ED4A6 /* CardDontUseViewController.m in Sources */,
292AD2001DE309C1003EC56E /* IntegralDetailsViewController.m in Sources */,
044708611CD7C1E800555827 /* MainSetViewController.m in Sources */,
29E28CE81CE0B91B00812A55 /* HENLENSONG.m in Sources */,
299249441CDB51B100786B1E /* ModifyShippingAddressView.m in Sources */,
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment