如何用 null 初始化方法参数
我有一个接受两个参数的自定义方法。我正在使用这种方法处理几个不同的数据集,其中一些只需要传递一个数组,其他两个。我想知道是否可以在需要时传递一个 null ?
//方法
- (IBAction)startSortingTheArray:(NSArray *)arrayData:(NSArray *)arrayDataB
{
//..
}
I have a custom method that accepts two parameters. I am using this method with several different data sets, of which some only need to have one array passed and other two.. I am wondering if its possible to pass one null if needed?
//method
- (IBAction)startSortingTheArray:(NSArray *)arrayData:(NSArray *)arrayDataB
{
//..
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
年华零落成诗2024-12-19 05:47:16
如果您在界面生成器中使用此方法,例如将其附加到 UIButton,那么这是不可能的。
但如果您在其他方法中调用此方法,那么是的
[self startSortingTheArray:nil arrayB:nil];
- (IBAction)startSortingTheArray:(NSArray *)arrayData:(NSArray *)arrayDataB
{
if(arrayData == nil){
// do something
}
if(arrayDataB == nil){
// do something
}
if(arryaData == nil && arrayData == nil){
// do something
}
//..
}
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是的,如果需要,您应该能够传递一个 null,只要您的实现编码为期望这种方式。例如:
为了使您的界面更加干净,您还可以提供该方法的替代签名并执行以下操作:
请注意,我更改了您最初发布的返回类型。您已将其声明为 IBAction,该 IBAction 应该将 sender 作为其参数,而不是您传递它时的数组。我假设您的意思是将其应用于另一个函数,而不是真正应用于界面生成器操作。
Yes, you should be able to pass one null if needed, as long as your implementation is coded to expect it that way. For example:
To make your interface more clean, you could also provide an alternate signature of the method and do something like:
Note that I changed the return type from what you initially posted. You had it declared as an IBAction which should take sender as its argument, not an array as you were passing it. I assume you meant for this to be applied to another function and not really to an interface builder action.