Привет всем, это должно быть простой задачей, но по какой-то причине я усложняю ... Я пытаюсь сохранить некоторый текст из файла XML в строку NSString. Но когда я отлаживаю его, строка говорит "Out of scope".
Вот мой код:
в моем .h файле:
@interface RootViewController : UIViewController<MBProgressHUDDelegate> {
NSString *thePW;
}
и мой файл .m:
NSString *thePW;
...
- (void)viewDidLoad {
...
if(e == nil){
NSString *response = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
thePW = response; // <-- this is where it has "Out of scope"
[response release];
}
}
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex
{
if (buttonIndex != [alertView cancelButtonIndex])
{
if (thePW == @"0000")
{
NSLog(@"correct!");
}
}
}