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.
我是 Objective-C 的新手。
我有一个类,它有几个需要初始化为默认值的属性。不能保证这些属性一定会在实例的生命周期中使用。
您会建议在指定的初始化程序中初始化为默认值,还是使用自定义 getter 方法懒惰地初始化这些值?
惰性实例化是objective-c的核心概念,经常使用。