Commit 7d408a0b authored by jz's avatar jz

移动文件

parent a4b27da7
......@@ -28,7 +28,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
GMCache: b78d8e46db864405e91d226ce640cc80d966c611
GMPhobos: c09920b4a726363b902c2f14ba64e1ee1620d0e2
GMPhobos: fd6f7e453e71fb7f51d8c5601e605c110ddfda92
MagicalRecord: 53bed74b4323b930992a725be713e53b37d19755
MJExtension: 635f2c663dcb1bf76fa4b715b2570a5710aec545
TMCache: 95ebcc9b3c7e90fb5fd8fc3036cba3aa781c9bed
......
......@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
s.source = { :git => "git@git.wanmeizhensuo.com:gengmeiios/GMPhobos.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.source_files = 'GMPhobos/Classes/*.{h,m}'
s.source_files = 'GMPhobos/Classes/**/*'
s.dependency 'GMCache'
s.dependency 'MJExtension'
s.dependency 'MagicalRecord'
......
//
// GMTrackerProtocol.h
// Gengmei
//
// Created by MoMo on 2019/8/15.
// Copyright © 2019 更美互动信息科技有限公司. All rights reserved.
//
//#import "NSString+Tools.h"
#ifndef GMTrackerProtocol_h
#define GMTrackerProtocol_h
#define kCpcReferer @"cpc_referer"
#define kIsCpc @"is_cpc"
// 页面CPC
typedef NS_ENUM(NSInteger, GMCpcReferer) {
GMCpcNone = 9999 // None
};
@protocol GMTrackerProtocol <NSObject>
//
///** 页面名称 */
//@property (nonatomic, copy) NSString *page_name;
///** 页面业务ID */
//@property (nonatomic, copy) NSString *business_id;
///** 当前页面tab名称 */
//@property (nonatomic, copy) NSString *tab_name;
///** 上一个页面的tab名称 */
//@property (nonatomic, copy) NSString *referrer_tab_name;
///** 上一个页面的名称 */
//@property (nonatomic, copy) NSString *referrer;
///** 上一个页面的业务ID */
//@property (nonatomic, copy) NSString *referrer_id;
@end
@protocol GMCpcProtocol <NSObject>
/** cpc扣费 */
@property (nonatomic, assign) GMCpcReferer cpc_referer;
/** 是否cpc卡片 */
@property (nonatomic, assign) BOOL is_cpc;
@end
#endif /* GMTrackerProtocol_h */
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