-
[iPhone 프로그래밍] iPhone에서의 전역변수사용0x05 Programming/iPhone Programing 2010. 11. 11. 12:07
[값저장할때]testAppDelegate *app = [[UIApplication sharedApplication] delegate];
app.변수명 = 값;
[값불러올때]
testAppDelegate *app = [[UIApplication sharedApplication] delegate];
변수명 = app.변수명;