Target_A.m
339 Bytes
//
// Target_A.m
// CNLivePublishContent
//
// Created by 殷巧娟 on 2019/1/16.
//
#import "Target_A.h"
@implementation Target_A
-(UIViewController *)Action_ViewController:(NSDictionary *)param {
NSString *name = param[@"name"];
TestViewController *vc = [[TestViewController alloc] initWithName:name];
return vc;
}
@end