Skip to content

Commit

Permalink
modification
Browse files Browse the repository at this point in the history
  • Loading branch information
casatwy committed Mar 13, 2016
1 parent 5304785 commit 5b7c98a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

NSString * const kCTMediatorTargetA = @"A";

NSString * const kCTMediatorActionNativFetchDetailViewController = @"nativFetchDetailViewController";
NSString * const kCTMediatorActionNativFetchDetailViewController = @"nativeFetchDetailViewController";
NSString * const kCTMediatorActionNativePresentImage = @"nativePresentImage";
NSString * const kCTMediatorActionNativeNoImage = @"nativeNoImage";
NSString * const kCTMediatorActionShowAlert = @"showAlert";
Expand Down
2 changes: 1 addition & 1 deletion CTMediator/DemoModule/Actions/Target_A.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@interface Target_A : NSObject

- (UIViewController *)Action_nativFetchDetailViewController:(NSDictionary *)params;
- (UIViewController *)Action_nativeFetchDetailViewController:(NSDictionary *)params;
- (id)Action_nativePresentImage:(NSDictionary *)params;
- (id)Action_showAlert:(NSDictionary *)params;

Expand Down
2 changes: 1 addition & 1 deletion CTMediator/DemoModule/Actions/Target_A.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@implementation Target_A

- (UIViewController *)Action_nativFetchDetailViewController:(NSDictionary *)params
- (UIViewController *)Action_nativeFetchDetailViewController:(NSDictionary *)params
{
// 因为action是从属于ModuleA的,所以action直接可以使用ModuleA里的所有声明
DemoModuleADetailViewController *viewController = [[DemoModuleADetailViewController alloc] init];
Expand Down

0 comments on commit 5b7c98a

Please sign in to comment.