Target_B.m 452 B

12345678910111213141516171819
  1. //
  2. // Target_B.m
  3. // MainProject
  4. //
  5. // Created by 王猛 on 2023/5/3.
  6. // Copyright © 2023 casa. All rights reserved.
  7. //
  8. #import "Target_B.h"
  9. #import "BViewController.h"
  10. @implementation Target_B
  11. - (UIViewController *)Action_viewController:(NSDictionary *)params
  12. {
  13. NSString *contentText = params[@"contentText"];
  14. BViewController *viewController = [[BViewController alloc] initWithContentText:contentText];
  15. return viewController;
  16. }
  17. @end