본문 바로가기
프로그래밍 놀이터/iOS

[ios] Autosynthesized property will user synthesize instance variable not existing instance variable 문제 해결법

by 돼지왕 왕돼지 2012. 10. 13.
반응형



Autosynthesized property will user synthesize instance variable not existing instance variable 문제 해결법

처음 초보자들이 iOS 프로그래밍을 하다 보면 위와 같은 문제를 맞딱뜨리기 쉽습니다. ( 물론 저도 초보자로서... ㅎ )

 .h 파일에서 @property 로 정의한 변수가 @synthesize 를 통해 구체화 ( getter/setter 생성 )되지 않아서 해당 변수를 .m 파일에서 접근할 때 문제가 생기는 것입니다.

문제의 원인이 저러하니, 해결법은 당연히 해당 변수를 @synthesize 로 정의해주는 것입니다.

@implementation HelloWorldViewController

@synthesize variable1, variable2; 

 

 




도움이 되셨다면 손가락 꾸욱~ ( 로그인 필요 x )



반응형

댓글