Sto affrontando il problema "MyViewcontroller che utilizza un argomento NUR baseURL con il metodo baseURL loadHTMLString: teorema dei dati" - Ho completato correttamente il mio compito e tutto funziona correttamente .viewcontroller che utilizza un argomento NUR baseURL con il metodo loadHTMLString baseURL: teorema dei dati
Il problema era nella scansione di sicurezza OSWAP per la vulnerabilità mostra l'errore precedente.
Codice mio frammento di: -
NSString *aHtmlString = kEmptyString;
// Getting the bool from configuration plist
NSString *thePlistPath = [[NSBundle mainBundle] pathForResource:@"config" ofType:@"plist"];
NSDictionary *theURLdata = [[NSDictionary alloc] initWithContentsOfFile:thePlistPath];
is
ServerFAQAvailable = [[theURLdata valueForKey:kIsServerFAQAvailableKey] boolValue];
if (one || two || three) {
aHtmlString = [self loadFAQFor];
} else {
aHtmlString = [self loadFAQForwithout];
}
NSURL *baseURL = [NSURL fileURLWithPath:thePlistPath];
[self.faqWebView loadHTMLString:aHtmlString baseURL:baseURL];
Aggiornamento:
if (one || two || three) {
aHtmlString = [self loadFAQFor];
} else {
aHtmlString = [self loadFAQForwithout];
}
NSURL *baseURL = [NSURL fileURLWithPath:@"about:blank"];
[self.faqWebView loadHTMLString:aHtmlString baseURL:baseURL];
mostra ancora mi questione scansione
Vorrei iniziare accedendo i valori di 'thePlistPath' (e forse' theURLdata'), e verificando che in realtà hai un file nella posizione indicata da 'thePlistPath'. Se non lo fai, allora '[NSURL fileURLWithPath: thePlistPath];' probabilmente restituirà nil e anche 'theURLdata' sarà probabilmente nullo. – fullofsquirrels
cosa sono 'ee',' y'' e 'ii'? per favore usa nomi di variabili chiari, anche quali sono i valori di 'kConfigurationPlistName' e' kPlistFormType'? questo imposta il valore di 'thePlistPath' correttamente o è Nil? –
@ MostafaTorbjørnBerg hi che è le variabili basate sulla condizione nel file loadFAQFor all'esterno di sto costruendo il file html .js e .css – Spynet