Spotlight & MDFind
Indexing 服务 Maocx 系统的搜索服务 spotlight 想必大家都用过。它可以很便捷的帮我们找到想要的文件。 先举个例子,在 spotlight 中输入 _loadBlock, 我的电脑会出现以下结...
Indexing 服务 Maocx 系统的搜索服务 spotlight 想必大家都用过。它可以很便捷的帮我们找到想要的文件。 先举个例子,在 spotlight 中输入 _loadBlock, 我的电脑会出现以下结...
@property中有哪些属性关键字? nonatomic (thread-unsafe) atomic (default, thread safe) strong weak assign copy getter (custom getter method name) setter (custom setter method name) readwrite (default) readonly weak属性需要在dealloc中置nil么? 不需要,r...
NSString Property:copy or retain iOS程序中,在定义对象属性的时候,我们一般会把NSString类型的属性的修饰符写成 copy, 而不是 retain (或者 ARC 下面的 strong)...