Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
YH_Explorer
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Yincheng
8 years ago
Commit
c418e2e5e7b51b7d5288cc28a2e531bedc58c613
1 parent
5025bd02
fix ali httpdns bug, use no cache policy.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
YHExplorer/YHExplorerViewController.m
YHExplorer/YHExplorerViewController.m
View file @
c418e2e
...
...
@@ -206,7 +206,10 @@ static float kprogressViewRadius = 2.0f;
-
(
void
)
loadWebUrl
:
(
NSString
*
)
url
{
self
.
startPage
=
url
;
NSMutableURLRequest
*
request
=
[
NSMutableURLRequest
requestWithURL
:[
NSURL
URLWithString
:
url
]];
NSMutableURLRequest
*
request
=
[
NSMutableURLRequest
requestWithURL
:[
NSURL
URLWithString
:
url
]
cachePolicy
:
NSURLRequestReloadIgnoringLocalCacheData
timeoutInterval
:
20
];
if
([
self
.
delegate
respondsToSelector
:
@selector
(
explorerWillLoadRequest
:)])
{
[
self
.
delegate
explorerWillLoadRequest
:
request
];
}
...
...
Please
register
or
login
to post a comment