0
我有下面的代碼,試圖在可可應用程序加載本地HTML頁面...逃逸空間
NSString *basePath = @"file//Users/david/Documents/My Project/index.html";
NSString *escapedPath = [basePath stringByTrimmingCharactersInSet:
[NSCharacterSet whitespaceAndNewlineCharacterSet]];
NSURL*url=[NSURL URLWithString:escapedPath];
NSURLRequest*request=[NSURLRequest requestWithURL:url];
NSLog(@"current file is %@", url);
不幸的是,URL總是空的,如果我看值escapepedPath我看到'%20'逃離空間。但是,這在本地不起作用。有沒有一個stringBy函數可以正確轉義本地路徑?
謝謝!