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.
我已经学习 iOS 大约几个月了,我发现我应该使用指向许多 Objective-C 类型对象的指针。 但是有些情况下不应该使用指针,例如“NSInteger”“CGPoint”“BOOL”...... 所以问题是:在什么情况下我应该使用指针?以及使用指针的目的是什么
您使用指向所有对象的指针。
NSInteger、CGPoint 等不是 Objective-C 对象。它们是结构或类型定义。
您必须使用带有 Object 类型的指针。您可以将指针与其他 (C) 类型一起使用