Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在 ViewController 中声明一个 NSMutable 数组,有没有一种方法可以在不使用应用程序委托的情况下使其全局化?
您可以使用类方法NSMutableArray从您的UIViewController子类返回,例如:
NSMutableArray
UIViewController
static NSMutableArray *array; + (NSMutableArray *)array { if (!array) { array = [NSMutableArray arrayWithCapacity:8]; } return array; }
然后,您可以使用 . 从任何地方获取数组实例[MyViewController array]。
[MyViewController array]