Ваша ошибка здесь:
alertWithOkButton = [[UIAlertView alloc] initWithTitle:@"Status..." message:@"%@",dataReturned cancelButtonTitle:@"Okay" ];
Вы забыли вызвать метод NSString
stringWithFormat:
, ваш код должен выглядеть следующим образом:
Кроме того, если alertWithOkButton
не является переменной экземпляра, вам также необходимо объявить тип, добавив префикс UIAlertView *
.
alertWithOkButton = [[UIAlertView alloc] initWithTitle:@"Status..." message:[NSString stringWithFormat:@"%@",dataReturned] delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil];