0

我知道我不能在 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"];
  }
4

1 回答 1

1

为 url 使用静态变量。在方法中初始化它initialize(那不是init方法)。您当然可以添加一个设置静态变量值的方法。

与其他语言中的类变量一样,静态变量在运行时仅存在一次。

但它们不是类变量。当名称也用于其他类中的其他静态变量时,您可能会遇到命名冲突。因此,请熟悉单例模式,并在需要静态变量时考虑使用它。

有些人“滥用”应用程序委托对象作为全局字符值的容器。这可能不是“超出书本”,但效果很好并且很常见。但是,我相信单身人士的生活要好得多。

所有这一切都假设相关 URL 将针对所有JWKObjectView01.

于 2013-04-18T10:50:32.093 回答