Objective C - 初始化对象时通过方法参数传递对象名称的问题

发布于 2024-11-28 20:27:30 字数 790 浏览 1 评论 0原文

我对 Objective C 很陌生,正在尝试创建一种仅用一行代码初始化对象(更准确地说是按钮对象)的方法...我的方法声明是...

- (void)buttonDeclaration: (UIButton *)mButton :(int)xloc :(int)yloc :(int)bWidth :(int)bHeight 
                         : (NSString *)sImage :(UIViewController *)mView :(SEL)mSelector
{
  mButton = [UIButton buttonWithType:UIButtonTypeCustom];
  [self buttonSetxy:mButton :xloc :yloc :bWidth :bHeight];
  [mButton setBackgroundImage:[UIImage imageNamed:sImage] forState:UIControlStateNormal];

  [mView.view addSubview:mButton];
}

我的方法调用是...

[...buttonDeclaration:newButton :40 :65 :80 :65...]

但是 添加

[newButton setHidden:FALSE]; 

当我尝试在调用该方法后 时,它什么也不做。我不确定正确的术语是什么,但对象名称应该是 newButton 而不是 mButton。这有意义吗?我该如何实现这一目标?

I am very new to Objective C and am trying to create a method for initializing an object (button object to be more precise) with only one line of code... My method declaration is...

- (void)buttonDeclaration: (UIButton *)mButton :(int)xloc :(int)yloc :(int)bWidth :(int)bHeight 
                         : (NSString *)sImage :(UIViewController *)mView :(SEL)mSelector
{
  mButton = [UIButton buttonWithType:UIButtonTypeCustom];
  [self buttonSetxy:mButton :xloc :yloc :bWidth :bHeight];
  [mButton setBackgroundImage:[UIImage imageNamed:sImage] forState:UIControlStateNormal];

  [mView.view addSubview:mButton];
}

My method call is...

[...buttonDeclaration:newButton :40 :65 :80 :65...]

but when I try to add

[newButton setHidden:FALSE]; 

after my call to the method it does nothing. I'm not sure what the proper term is, but the object name should be newButton not mButton. Does this make sense and how do I accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寻梦旅人 2024-12-05 20:27:31

实际上,objective c 中声明方法的方式是不同的。

当您声明具有多个参数的方法时,它应该是这样的。

  • (void) myMethod : (int)firstNum secondaryArgument:(int)secondNum

所以你的方法将被声明为

  • (void)buttonDeclaration: (UIButton *)mButton xPosition:(int)xloc yPosition:(int)yloc 宽度:(int)bWidth height:(int)bHeight imageName: (NSString *)sImage myView:(UIViewController *) mView选择器:(SEL)mSelector

现在您将通过以下方式调用此方法

[自身按钮声明:myBtn xPosition:5 yPosition:10 宽度:5 高度:10 等等......]

如果你想隐藏你的按钮,只需写

myBtn.hidden = YES;

Actually the way methods are declared in objective c is different.

When you declare method with multiple arguments then it should be like this.

  • (void) myMethod : (int)firstNum secondArgument:(int)secondNum

so ur method will be declared like

  • (void)buttonDeclaration: (UIButton *)mButton xPosition:(int)xloc yPosition:(int)yloc Width:(int)bWidth height:(int)bHeight imageName: (NSString *)sImage myView:(UIViewController *)mView selector:(SEL)mSelector

Now you will be calling this method by

[self buttonDeclaration : myBtn xPosition : 5 yPosition : 10 width : 5 height : 10 and so on.......]

and if you want to hide your button, just write

myBtn.hidden = YES;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文