本文转载至 http://blog.csdn.net/cyforce/article/details/8487856

1、UIWebDocumentView

2、WebView

3、

//================================================================//

私有框架所在目录?

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/System/Library/PrivateFrameworks

//================================================================//

UIWebView 的层次

①、UIScrollView is a subview of UIWebView

②、UIWebDocumentView is a subview of UIScrollView

//================================================================//

如何获取 UIWebDocumentView 与 WebView ?

UIWebView *officialWebView = [[UIWebView alloc] init];

UIWebDocumentView *webDocumentView = nil;

id webView = nil;

webDocumentView = objc_msgSend(officialWebView, @selector(_documentView));

object_getInstanceVariable(webDocumentView, "_webView", (void**)&webView);

具体有支持哪些消息可以从网络上查找,有dump出的头文件供下载。

//================================================================//

如何截获 Touch 事件?

@implementation UIView (__TapHook)

- (void)__replacedTouchesBegan:(NSSet*)touches withEvent:(UIEvent*)event {

[self __replacedTouchesBegan:touches withEvent:event];

if( [self.superview.superview isMemberOfClass:[UICWebView class]] ) {

[(UICWebView*)self.superview.superview hookedTouchesBegan:touches withEvent:event];

}

}

@end

+ (void)installHook {

Class klass = objc_getClass( "UIWebDocumentView" );

// replace touch began event

method_exchangeImplementations(

class_getInstanceMethod(klass, @selector(touchesBegan:withEvent:)),

class_getInstanceMethod(klass, @selector(__replacedTouchesBegan:withEvent:)) );

}

ref:http://sonson-code.googlecode.com/svn/trunk/iPhone2.0/UICWebView/

//================================================================//

如何获取网页的真实加载速度?

①、注册通知:

[[NSNotificationCenter defaultCenter] addObserver:self

selector:@selector(progressEstimateChanged:)

name:WebViewProgressEstimateChangedNotification

object:coreWebView];

②、处理通知消息:

- (void)progressEstimateChanged:(NSNotification*)theNotification {

// You can get the progress as a float with

// [[theNotification object] estimatedProgress], and then you

// can set that to a UIProgressView if you'd like.

// theProgressView is just an example of what you could do.

[theProgressView setProgress:[[theNotification object] estimatedProgress]];

if ((int)[[theNotification object] estimatedProgress] == 1) {

theProgressView.hidden = TRUE;

// Hide the progress view. This is optional, but depending on where

// you put it, this may be a good idea.

// If you wanted to do this, you'd

// have to set theProgressView to visible in your

// webViewDidStartLoad delegate method,

// see Apple's UIWebView documentation.

}

}

ref:http://winxblog.com/2009/02/iphone-uiwebview-estimated-progress/

//================================================================//

调试 UIWebView

ref:http://www.idryman.org/blog/2012/06/17/debug-uiwebview-in-your-ios-app/

ref:http://atnan.com/blog/2011/11/17/enabling-remote-debugging-via-private-apis-in-mobile-safari/

//================================================================//

开启并使用 WebGL

ref:http://atnan.com/blog/2011/11/03/enabling-and-using-webgl-on-ios/

//================================================================//

关于 UIWebView 的说明的更多相关文章

  1. AFNetworking 3.0 源码解读(十一)之 UIButton/UIProgressView/UIWebView + AFNetworking

    AFNetworking的源码解读马上就结束了,这一篇应该算是倒数第二篇,下一篇会是对AFNetworking中的技术点进行总结. 前言 上一篇我们总结了 UIActivityIndicatorVie ...

  2. ios UIWebView自定义Alert风格的弹框

    之前开发过一个App,因为公司之前写好了网页版的内容和安卓版本的App,我进去后老板要求我ios直接用网页的内容,而不需要自己再搭建框架.我一听,偷笑了,这不就是一个UIWebView吗?简单! 但是 ...

  3. iOS网络3—UIWebView与WKWebView使用详解

    一.整体介绍 UIWebView自iOS2就有,WKWebView从iOS8才有,毫无疑问WKWebView将逐步取代笨重的UIWebView.通过简单的测试即可发现UIWebView占用过多内存,且 ...

  4. IOS 网络浅析-(十二 UIWebView简介)

    在这篇随笔里,我们只要知道UIWebView是什么就可以了. UIWebView 是苹果提供的用来展示网页的UI控件,它也是最占内存的控件. iOS8.0之后出现了webkit框架,WKWebView ...

  5. UIWebView获取网页点击事件

    //接收web事件 -(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request nav ...

  6. IOS UIWebView 下拉刷新功能的简单实现

    1.运行效果图 2.swift 代码的实现 import UIKit class RefreshWebViewController: UIViewController,UIScrollViewDele ...

  7. UI控件(UIWebView)

    本文主要记录UIWebView三方面内容: 1.基本的加载网页链接或文件: 2.网页js调用原生,也就是Cordova混合架构的原理: 3.原生调用js程序: 原生部分主要代码: @implement ...

  8. UIwebView 和 H5交互详情

    背景: 最近公司准备上一个只有原生登录界面 + H5网页 ,并且支持ios7.0 以上系统的混合app;这可把我难住了,原生的UI界面我可以正写反写各种style把界面搭建起来.而要这个app的难点在 ...

  9. ios UIWebView 在开发中加载文件

    UIWebView 在实际应用中加载文件的时候,有两种情况, 1. 实行在线预览 , 2. 下载到本地,再查看 如果是第一种情况: NSURL *url = [NSURL URLWithString: ...

  10. iOS UIWebView 拦截点击事件(双击缩放)

    在平时的开发中,要使用到webview,但类似微信的webview在数据没有加载完成的时候 双击屏幕,webview不会缩放,其实实现这个功能很简单 代码是用swift写的 class YYSimpl ...

随机推荐

  1. 2017.11.21 postgre更新时需要联合其他表的信息

    现在需要更新t_user表,但是前台传来的参数 tenant_name 并不在这个表中,需要联合另一个表t_tenant. 要注意的一点是:set后面的字段不要写成 u.fd_validity,否则会 ...

  2. iOS 系统框架

    iOS的系统架构分为四个层次:核心操作系统层(Core OS layer).核心服务层(Core Services layer).媒体层(Media layer)和可触摸层(Cocoa Touch l ...

  3. spring 动态定时任务

    功能介绍:商品自动上架.按修改或添加时设置的自动上架时间而启动定时任务 更改商品状态为上架. spring 中配置文件 <?xml version="1.0" encodin ...

  4. MPTCP 源码分析(二) 建立子路径

    简述      MPTCP在进行三次握手之后,客户端和服务端会进行地址信息的交换,让对方知道彼此未用的地址信息. 当客户端知道服务端的地址后就可以建立其他子路径.三次握手和建立子路径的过程如图1:   ...

  5. 小程序app is not defined

    错误记录: 小程序丨 报错:app is not defined; 解决方案: Js头部添加:var app = getApp();     返回按钮: wx.navigateBack();   转发 ...

  6. 【Python3 爬虫】07_正则表达式(原子)

    原子是正则表达式的最基本的组成单位,而且在每个模式中最少包含一个原子.原子是由所有那些未显示指定为元字符的打印和非打印字符组成. 原子分类 1.普通字符作为原子 普通字符是编写正则表达式时最常见的原子 ...

  7. blog url.txt

    java 回收机制与虚拟机http://www.cnblogs.com/zhanglei93/p/6636831.html Java 编程经验(牛人写的)  上/下http://www.thinksa ...

  8. iOS-贝塞尔曲线之自定义饼图

    代码地址如下:http://www.demodashi.com/demo/11981.html 项目中需要统计数据展现, 采用了饼图形式展现. 第一步: 了解下贝塞尔曲线相关概念 贝塞尔曲线相关概念: ...

  9. 记一次elementUI Icon 加载无效的问题。并且提示错误 Failed to decode downloaded font:

    问题在于webpack的loader中.检查了一下发现有两个相同的file-loader的配置,删除其中一个即可.

  10. Atitit .c#的未来新特性计划草案

    Atitit .c#的未来新特性计划草案 1. C#的未来:追踪空引用1 1.1. 2. 变量命名空间1 1.2. 10. 项目引用Native dll2 1.3. 10. 项目引用Native dl ...