gpt4 book ai didi

objective-c - @interface 括号内外声明的变量

转载 作者:行者123 更新时间:2023-12-04 03:14:15 25 4
gpt4 key购买 nike

为什么必须像这样在@interface 括号内声明变量?

@interface myClass : UIViewController {
NSString *myString;
IBOutlet UILabel *myLabel;
}

为什么不在这里做呢?

@interface myClass : UIViewController {
IBOutlet UILabel *myLabel;
}

NSString *myString;

最佳答案

因为如果您不这样做,那么该变量将是一个文件范围变量(具有静态存储持续时间)并且它不会是您的类的实例变量

关于objective-c - @interface 括号内外声明的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15074481/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com