Skip to content

Commit

Permalink
1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Gdxy committed Nov 20, 2018
1 parent 0dec806 commit 04f08ad
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
22 changes: 12 additions & 10 deletions TLTransitions.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'TLTransitions'
s.version = '1.3.5'
s.version = '1.3.6'
s.license = 'MIT'
s.ios.deployment_target = '8.0'
s.platform = :ios, '8.0'
Expand All @@ -24,15 +24,17 @@ Pod::Spec.new do |s|
tv.dependency 'TLTransitions/Config'
end

# s.subspec 'Animator' do |anm|
# anm.source_files = 'TLTransitions/TransitionController/Animator/*.{h,m}'
# anm.dependency 'TLTransitions/Config'
# end


s.subspec 'TransitionController' do |tc|
tc.source_files = 'TLTransitions/TransitionController/*.{h,m}'
tc.dependency 'TLTransitions/Config'
# tc.dependency 'TLTransitions/Animator'

# s.subspec 'TransitionController' do |tc|
# tc.source_files = 'TLTransitions/TransitionController/*.{h,m}'
# tc.dependency 'TLTransitions/Config'
# tc.dependency 'TLTransitions/Animator'
# end
tc.subspec 'Animator' do |anm|
anm.source_files = 'TLTransitions/TransitionController/Animator/*.{h,m}'
anm.dependency 'TLTransitions/Config'
end
end

end
3 changes: 2 additions & 1 deletion TLTransitions/TLTransitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
#define TLTransitionHeader_h

#import "TLTransition.h"
//#import "UIViewController+Transitioning.h"
#import "UIViewController+Transitioning.h"
#import "TLGlobalConfig.h"
#import "TLAnimatorProtocol.h"
#import "TLSwipeAnimator.h"
#import "TLCATransitonAnimator.h"
//#import "TLViewTransitionAnimator.h" // 不完善,暂不开放
Expand Down
3 changes: 2 additions & 1 deletion TLTransitions/TransitionController/TLTransitionDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
// Copyright © 2018 故乡的云. All rights reserved.
// view vontroller transition delegate / navigation controller delegate

#import "TLAnimatorProtocol.h"
#import "TLGlobalConfig.h"
@protocol TLAnimatorProtocol;

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion TLTransitions/TransitionController/TLTransitionDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
// view vontroller transition delegate / navigation controller delegate

#import "TLTransitionDelegate.h"
#import "TLGlobalConfig.h"
#import "TLPercentDrivenInteractiveTransition.h"
#import "TLAnimatorProtocol.h"

@interface TLTransitionDelegate ()
@property(nonatomic, strong) id<TLAnimatorProtocol> currentAnimator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@


#import "TLGlobalConfig.h"
@class TLTransitionDelegate;
@protocol TLAnimatorProtocol;
@class TLTransitionDelegate;

NS_ASSUME_NONNULL_BEGIN

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

#import "UIViewController+Transitioning.h"
#import <objc/runtime.h>
#import "TLAnimatorProtocol.h"
#import "TLTransitionDelegate.h"
#import "TLCATransitonAnimator.h"
#import "TLSwipeAnimator.h"
#import "TLCustomAnimator.h"
#import "TLAnimatorProtocol.h"

#pragma mark-
#pragma mark UIViewController (Transitioning)
Expand Down

0 comments on commit 04f08ad

Please sign in to comment.