我有一个班级UIViewController
,里面有一个按钮,我想从另一个班级调用一个方法,请你帮我实现按钮的动作
我是objective-c的新手
我的按钮操作UIViewController
:
- (IBAction)ActionButton:(id)sender {
NSLog(@"A1");
}
我在WebViewControlle
r 中的方法:
-(void)loadWebView{
NSURL *url = [NSURL fileURLWithPath:[ [ NSBundle mainBundle ] pathForResource:
@"TestName/TestName1/Test1Name1" ofType:@"html" ]];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
}
我的问题是如何将此方法调用到我的按钮,因为它在另一个视图中?我有一种方法,WebViewController
我想从我拥有的一个按钮中调用它UIViewController