Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
buaa0300 committed Aug 13, 2017
1 parent 1498809 commit abca95e
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 13 deletions.
2 changes: 1 addition & 1 deletion QSImageProcess.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ s.platform = :ios, "7.0"
s.source = {:git => "https://github.com/buaa0300/QSImageProcess.git", :tag => s.version}
s.requires_arc = true
s.source_files = "QSImageProcess/*"
s.dependency "QSDispatchQueue", "~>1.0.0"
s.dependency "QSDispatchQueue"
s.dependency "SDWebImage", "~>4.1.0"
end
2 changes: 1 addition & 1 deletion QSImageProcess/QSDispatchQueue/QSDispatchQueue.m
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ - (instancetype)initWithQueue:(dispatch_queue_t)queue
self = [super init];
if (self) {
if (!queue) {
queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
_queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
}else{
_queue = queue;
}
Expand Down
2 changes: 1 addition & 1 deletion QSImageProcessDemo/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ platform :ios, '8.0'

target 'QSImageProcessDemo' do

pod 'QSDispatchQueue', '~>1.0.0'
pod 'QSDispatchQueue'
pod 'SDWebImage', '~>4.1.0'
#内存泄漏检测
pod 'MLeaksFinder'
Expand Down
8 changes: 4 additions & 4 deletions QSImageProcessDemo/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ PODS:
- FBRetainCycleDetector (0.1.3)
- MLeaksFinder (0.2.1):
- FBRetainCycleDetector
- QSDispatchQueue (1.0.0)
- QSDispatchQueue (1.0.1)
- SDWebImage (4.1.0):
- SDWebImage/Core (= 4.1.0)
- SDWebImage/Core (4.1.0)

DEPENDENCIES:
- MLeaksFinder
- QSDispatchQueue (~> 1.0.0)
- QSDispatchQueue
- SDWebImage (~> 4.1.0)

SPEC CHECKSUMS:
FBRetainCycleDetector: f0c7b290bf48ae77f6ae060843ce34ae341781eb
MLeaksFinder: 0850e2f2abc7227adc4d4e2d1992b431264eb4d5
QSDispatchQueue: d54ff4c79e84b1da9c27ffeee4bbd906aae7bb48
QSDispatchQueue: 3981828538f605d115001ab033e60465a359951a
SDWebImage: 0e435c14e402a6730315a0fb79f95e68654d55a4

PODFILE CHECKSUM: facde65b068e8bbea3079b036972b36215d3dfde
PODFILE CHECKSUM: c4eefc62dc82515961a824ba6933e663c9a2f48d

COCOAPODS: 1.2.1
8 changes: 4 additions & 4 deletions QSImageProcessDemo/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 43 additions & 1 deletion QSImageProcessDemo/Pods/QSDispatchQueue/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit abca95e

Please sign in to comment.