Dostaję ostrzeżenie w Xcode:presentModalViewController: animowane jest przestarzała
'presentModalViewController:animated:' is deprecated: first deprecated in iOS 6.0
na tej linii kodu:
[self presentModalViewController:initialSettingsVC animated:YES];
starałem się go zastąpić, jak sugerowano w documentation z:
[self presentModalViewController:initialSettingsVC animated:YES completion:nil];
Teraz pojawia się błąd w kodzie X:
Brak widocznych @interface dla 'ViewController' deklaruje selektor 'presentModalViewController: animowany: Zakończenie:'
Jakieś pomysły?
Ty błędnie metodę. To jest 'presentViewController: animated: completion'. Usuń "Modal". – bbarnhart
@bbarnhart Masz rację. To jest rozwiązanie. – poiuytrez