non-ARC의 Objective-C 포인트
1484 단어 Objective-C
//viewDidLoad
self.person = [Person alloc] initWithArray:sbs]
// , person retain , setter ( [self setPerson]) 1 。 (alloc) , self person 2 。 ?
, autorelease, self person setter , alloc 。 :
self.person =[[Person alloc] initWithArray:sbs]autorelease];
3. 줄 규칙은 "init/dealloc에서 setter/getter가 적용되지 않습니다"
자신이 나중에 코코스2D를 할 수도 있고,
그래서property가cocos2D에서의 규칙, 고수 총결산, 원문 주소http://www.raywenderlich.com/2712/using-properties-in-objective-c-tutorial
So to avoid making unnecessary properties for everything, here’s what I like to use for Cocos2D:
I just personally find it simpler and faster to develop this way.
Note this strategy doesn’t work if you want to keep track of an object not currently in the layer – you’ll have to use an alternative strategy there.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PreferenceBundle에서 오른쪽 상단에 Respring 버튼을 클릭합니다.만나서 반갑습니다, Minazuki라고합니다. 프로필 이름 : Minazuki_dev Twitter : Repo : 아직 중학생이므로 말이 이상한 곳이 있습니다만 용서해 주세요… 🙏 theos (Mac이든 단품이든 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.