Skip to content

Commit

Permalink
4.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
molicechen committed Dec 15, 2022
1 parent f396f60 commit cc0c1d6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion QMUIKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "QMUIKit"
s.version = "4.6.2"
s.version = "4.6.3"
s.summary = "致力于提高项目 UI 开发效率的解决方案"
s.description = <<-DESC
QMUI iOS 是一个致力于提高项目 UI 开发效率的解决方案,其设计目的是用于辅助快速搭建一个具备基本设计还原效果的 iOS 项目,同时利用自身提供的丰富控件及兼容处理, 让开发者能专注于业务需求而无需耗费精力在基础代码的设计上。不管是新项目的创建,或是已有项目的维护,均可使开发效率和项目质量得到大幅度提升。
Expand Down
1 change: 0 additions & 1 deletion QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ - (CGColorRef)CGColor {
CGColorSpaceRef spaceRef = CGColorSpaceCreateDeviceRGB();
CGColorRef cgColor = CGColorCreate(spaceRef, (CGFloat[]){rawColor.qmui_red, rawColor.qmui_green, rawColor.qmui_blue, rawColor.qmui_alpha});
CGColorSpaceRelease(spaceRef);
CFRelease(spaceRef);

[(__bridge id)(cgColor) qmui_bindObject:self forKey:QMUICGColorOriginalColorBindKey];
return (CGColorRef)CFAutorelease(cgColor);
Expand Down
2 changes: 1 addition & 1 deletion QMUIKit/QMUIKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#ifndef QMUIKit_h
#define QMUIKit_h

static NSString * const QMUI_VERSION = @"4.6.2";
static NSString * const QMUI_VERSION = @"4.6.3";

#if __has_include("CAAnimation+QMUI.h")
#import "CAAnimation+QMUI.h"
Expand Down
4 changes: 3 additions & 1 deletion QMUIKit/UIKitExtensions/UIColor+QMUI.m
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,10 @@ + (void)load {
CGColorSpaceRelease(spaceRef);

[(__bridge id)(result) qmui_bindObject:selfObject forKey:QMUICGColorOriginalColorBindKey];
return (CGColorRef)CFAutorelease(result);
}
return (CGColorRef)CFAutorelease(result);

return result;
};
});
});
Expand Down
4 changes: 2 additions & 2 deletions qmui.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1973,7 +1973,7 @@
"@loader_path/Frameworks",
);
MACH_O_TYPE = mh_dylib;
MARKETING_VERSION = 4.6.2;
MARKETING_VERSION = 4.6.3;
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.qmui.QMUIKit;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -2017,7 +2017,7 @@
"@loader_path/Frameworks",
);
MACH_O_TYPE = mh_dylib;
MARKETING_VERSION = 4.6.2;
MARKETING_VERSION = 4.6.3;
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_BUNDLE_IDENTIFIER = com.qmui.QMUIKit;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down

0 comments on commit cc0c1d6

Please sign in to comment.