12345678910111213141516171819 |
- //
- // Target_B.m
- // MainProject
- //
- // Created by 王猛 on 2023/5/3.
- // Copyright © 2023 casa. All rights reserved.
- //
- #import "Target_B.h"
- #import "BViewController.h"
- @implementation Target_B
- - (UIViewController *)Action_viewController:(NSDictionary *)params
- {
- NSString *contentText = params[@"contentText"];
- BViewController *viewController = [[BViewController alloc] initWithContentText:contentText];
- return viewController;
- }
- @end
|