我知道我不能在 Class 方法中传递实例变量,所以我不再对两者之间的区别感到困惑。
因此我有点卡住了。
我有 2 个类方法,它们都可以NSString
作为参数。
无论如何他们可以匹配吗?因为一个 Class 方法有一个字符串,它是一个 url,需要在按下按钮后在 Safari 中打开,因此@selector(openBrowser:)
需要知道该 url 来自什么JWKObjectView01
请告诉我有办法做到这一点??
我尝试将其全部更改为实例方法,但是当我按下按钮时应用程序崩溃 - 所以我正在尝试解决这个问题:-)
提前致谢。PS我知道我首先要说我知道你不能混合这两个课程 - 据我所知,但也许我错过了什么?
//添加代码:
UIView 类 .h 文件
@interface JWKObjectView01 : UIView <UIWebViewDelegate>
{
NSString *string;
NSURL *url;
NSUserDefaults *defaults;
}
+ (JWKObjectView01 *)anyView:(UIView *)anyView
title:(NSString *)title
weburl:(NSString *)webstring;
+ (void)openBrowser:(NSString *)urlString;
.m 文件
+ (JWKObjectView01 *)anyView:(UIView *)anyView
title:(NSString *)title
weburl:(NSString *)webString
{
JWKObjectView01 *anotherView = [[JWKObjectView01 alloc] initWithFrame:CGRectMake(0,0,320,200)];
anotherView.backgroundColor = [UIColor yellowColor];
[anyView addSubview:anotherView];
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(20, 20, 100, 100);
[button setTitle:title forState:UIControlStateNormal];
[button addTarget:self action:@selector(openBrowser:) forControlEvents:UIControlEventTouchUpInside];
[anotherView addSubview:button];
return anotherView;
}
+ (void)openBrowser:(NSString *)urlString;
{
//This is where I am stuck and I need the variable - weburl:(NSString *)webString -
NSURL *url = [NSURL URLWithString:urlString];
[[UIApplication sharedApplication] openURL:url];
}
.m 文件视图控制器
-(void)viewDidLoad
{
[JWKObjectView01 anyView:self.view title:@"OPEN" weburl:@"http://google.com"];
}