I've got one variable and I need this variable during the whole programm. Now code is the next: .h file
extern RequestParams* newUser;
.m file
RequestParams* newUser;
But it works bad. Information doesn't get to this variable. What is the best way to solve this problem? Thank you.