File tree 3 files changed +21
-0
lines changed
M2DWebViewController.xcodeproj
M2DWebViewController.xcworkspace/xcshareddata
Pod/Classes/M2DWebViewController
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 280
280
LastUpgradeCheck = 0820;
281
281
ORGANIZATIONNAME = "Akira Matsuda";
282
282
TargetAttributes = {
283
+ 6003F589195388D20070C39A = {
284
+ DevelopmentTeam = 3VC35JGS33;
285
+ };
283
286
6003F5AD195388D20070C39A = {
284
287
TestTargetID = 6003F589195388D20070C39A;
285
288
};
290
293
developmentRegion = English;
291
294
hasScannedForEncodings = 0;
292
295
knownRegions = (
296
+ English,
293
297
en,
294
298
Base,
295
299
);
537
541
buildSettings = {
538
542
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
539
543
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
544
+ DEVELOPMENT_TEAM = 3VC35JGS33;
540
545
GCC_PRECOMPILE_PREFIX_HEADER = YES;
541
546
GCC_PREFIX_HEADER = "M2DWebViewController/M2DWebViewController-Prefix.pch";
542
547
INFOPLIST_FILE = "M2DWebViewController/M2DWebViewController-Info.plist";
553
558
buildSettings = {
554
559
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
555
560
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
561
+ DEVELOPMENT_TEAM = 3VC35JGS33;
556
562
GCC_PRECOMPILE_PREFIX_HEADER = YES;
557
563
GCC_PREFIX_HEADER = "M2DWebViewController/M2DWebViewController-Prefix.pch";
558
564
INFOPLIST_FILE = "M2DWebViewController/M2DWebViewController-Info.plist";
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <key >IDEDidComputeMac32BitWarning </key >
6
+ <true />
7
+ </dict >
8
+ </plist >
Original file line number Diff line number Diff line change @@ -145,6 +145,13 @@ - (instancetype)initWithConfiguration:(WKWebViewConfiguration *)configuration ur
145
145
- (void )dealloc
146
146
{
147
147
[UIApplication sharedApplication ].networkActivityIndicatorVisible = NO ;
148
+ if ([self .webView isKindOfClass: [UIWebView class ]]) {
149
+ UIWebView *webView = self.webView ;
150
+ if (webView.isLoading ) {
151
+ [webView stopLoading ];
152
+ }
153
+ webView.delegate = nil ;
154
+ }
148
155
}
149
156
150
157
- (id )webView
You can’t perform that action at this time.
0 commit comments