/*这段代码是固定的,必须要放到js中*/function setupWebViewJavascriptBridge(callback) { var u = navigator.userAgent; var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS ...
分类:
移动开发 时间:
2018-10-19 00:16:48
阅读次数:
268
```c++ include include include include define pc putchar define gc getchar() define rep(a,b,c) for(int a = b;a = c; a) inline int read() { int x = 0,f ...
分类:
其他好文 时间:
2018-10-19 00:09:41
阅读次数:
145
1.定位元素应用元素 1.1通过id定位元素 Android里面定位的id一般为resrouce-id: 代码可以这样写: 或者: 下面的例子展示的是通过id定位到元素并点击: 1.2通过name定位元素 一般text属性认为是name 1.3通过ClassName定位元素 classname指的是 ...
分类:
移动开发 时间:
2018-10-15 16:19:25
阅读次数:
231
具备refresh方法的控件: 1,Collapsibleset Widget 2,Filterable Widget 3,Flipswitch Widget 4,Listview Widget 5,Rangeslider Widget 6,Selectmenu Widget 7,Slider Wi ...
分类:
Web程序 时间:
2018-10-14 21:02:55
阅读次数:
372
符号属性:list-style-type:none; /*不编号*/list-style-type:decimal; /*阿拉伯数字*/list-style-type:lower-roman; /*小写罗马数字*/list-style-type:upper-roman; /*大写罗马数字*/list ...
分类:
Web程序 时间:
2018-10-13 14:43:01
阅读次数:
1391
none:什么都没有的网络,挂在这个网络下的容器除了lo,没有其他任何网卡,容器创建时,可以通过--network=none指定使用none网络。 host:容器的网络配置与host完全一样。可以通过--network=host指定使用host网络。host的网络性能很好,但容易产生端口冲突。 br ...
分类:
其他好文 时间:
2018-10-10 15:33:10
阅读次数:
189
YYModel源码中有一句:kCFNull nil: define the id of a null instance, 指向一个(实例)对象的空指针 如:NSString *str = nil; NSDate *date = nil; Nil:defines the id of a null cl ...
分类:
其他好文 时间:
2018-10-09 00:44:01
阅读次数:
178
CSS 盒子模型 border margin padding ...
分类:
Web程序 时间:
2018-10-06 14:30:57
阅读次数:
147
一、引言 在软件开发过程中,有些对象有时候会由于网络或其他的障碍,以至于不能够或者不能直接访问到这些对象,如果直接访问对象给系统带来不必要的复杂性,这时候可以在客户端和目标对象之间增加一层中间层,让代理对象代替目标对象,然后客户端只需要访问代理对象,由代理对象去帮我们去请求目标对象并返回结果给客户端 ...
switch可作用于char byte short int switch可作用于char byte short int对应的包装类 switch不可作用于long double float boolean,包括他们的包装类 switch中可以是字符串类型,String(JDK1.7之后才可以作用在s ...
分类:
编程语言 时间:
2018-10-05 18:41:24
阅读次数:
182