Skip to content

Commit 61c14c1

Browse files
author
erichmzhang
committed
修复Objective-C C++混编导致的问题
1 parent e47fe26 commit 61c14c1

File tree

5 files changed

+28
-22
lines changed

5 files changed

+28
-22
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 5.1.2
2+
- 修复C++混编情况下的问题
3+
14
# 5.1.1
25
- 修复了一些问题
36

QCloudCOSXML.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "QCloudCOSXML"
3-
s.version = "5.1.1"
3+
s.version = "5.1.2"
44
s.summary = "QCloudCOSXML 腾讯云iOS-SDK组件"
55

66
s.homepage = "https://cloud.tencent.com/"
@@ -9,5 +9,5 @@ Pod::Spec.new do |s|
99
s.source = { :git => "https://github.com/tencentyun/qcloud-sdk-ios.git", :tag => s.version.to_s }
1010
s.ios.deployment_target = '8.0'
1111
s.source_files = 'QCloudCOSXML/Classes/**/*'
12-
s.dependency 'QCloudCore','5.1.1'
12+
s.dependency 'QCloudCore','5.1.2'
1313
end

QCloudCOSXML/Classes/auto-generation/QCloudLifecycleRuleFilter.h

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,17 @@
3232
NS_ASSUME_NONNULL_BEGIN
3333
@interface QCloudLifecycleRuleFilter : NSObject
3434
/**
35-
指定规则所适用的前缀。匹配前缀的对象受该规则影响。
36-
*/
35+
指定规则所适用的前缀。匹配前缀的对象受该规则影响。
36+
*/
3737
@property (strong, nonatomic) NSString *prefix;
3838
/**
39-
标签,Tag 可以有零个或者多个
40-
*/
39+
标签,Tag 可以有零个或者多个
40+
*/
4141
@property (strong, nonatomic) NSString *tag;
4242
/**
43-
用于组合 Prefix 与 Tag
44-
*/
45-
@property (strong, nonatomic) QCloudLifecycleRuleFilterAnd *and;
43+
用于组合 Prefix 与 Tag
44+
*/
45+
@property (strong, nonatomic) QCloudLifecycleRuleFilterAnd *ruleFilterAnd;
4646
@end
4747
NS_ASSUME_NONNULL_END
48+

QCloudCOSXML/Classes/auto-generation/QCloudLifecycleRuleFilterAnd.m

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
2-
// QCloudLifecycleRuleFilterAnd.m
3-
// QCloudLifecycleRuleFilterAnd
2+
// QCloudLifecycleRuleFilter.m
3+
// QCloudLifecycleRuleFilter
44
//
55
// Created by tencent
66
// Copyright (c) 2015年 tencent. All rights reserved.
@@ -24,29 +24,30 @@
2424
//
2525

2626

27-
#import "QCloudLifecycleRuleFilterAnd.h"
27+
#import "QCloudLifecycleRuleFilter.h"
2828

29-
#import "QCloudLifecycleTag.h"
29+
#import "QCloudLifecycleRuleFilterAnd.h"
3030

3131

3232
NS_ASSUME_NONNULL_BEGIN
33-
@implementation QCloudLifecycleRuleFilterAnd
33+
@implementation QCloudLifecycleRuleFilter
3434

3535

3636

3737
+ (NSDictionary *)modelCustomPropertyMapper
3838
{
39-
return @{
40-
@"prefix" :@"Prefix",
41-
@"tag" :@"Tag",
42-
};
39+
return @{
40+
@"prefix" :@"Prefix",
41+
@"tag" :@"Tag",
42+
@"ruleFilterAnd" :@"And",
43+
};
4344
}
4445

4546

4647
- (BOOL)modelCustomTransformToDictionary:(NSMutableDictionary *)dic
4748
{
48-
49-
49+
50+
5051
return YES;
5152
}
5253

@@ -56,11 +57,12 @@ - (NSDictionary *)modelCustomWillTransformFromDictionary:(NSDictionary *)dic
5657
return dic;
5758
}
5859
NSMutableDictionary* transfromDic = [NSMutableDictionary dictionaryWithDictionary:dic];
59-
60+
6061
return transfromDic;
6162
}
6263

6364
@end
6465

6566

6667
NS_ASSUME_NONNULL_END
68+

QCloudCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "QCloudCore"
11-
s.version = "5.1.1"
11+
s.version = "5.1.2"
1212
s.summary = "QCloudCore--腾讯云iOS-SDK Foundation"
1313

1414
# This description is used to generate tags and improve search results.

0 commit comments

Comments
 (0)