When using provider string tokens, there’s a chance they collide with other third-party tokens. Angular has with the concept of opaque tokens, that al ...
分类:
其他好文 时间:
2016-09-18 06:30:20
阅读次数:
191
李洪强iOS开发之性能优化技巧 通过静态 Analyze 工具,以及运行时 Profile 工具分析性能瓶颈,并进行性能优化。结合本人在开发中遇到的问题,可以从以下几个方面进行性能优化。 一、view优化 1、不透明的View 设置为opaque。 2、根据实际情况重用、延迟加载或预加载View。 ...
分类:
移动开发 时间:
2016-09-16 01:34:49
阅读次数:
203
Shaping Regions Time limit: 0.5 secondMemory limit: 64 MB N opaque rectangles (1 ≤ N ≤ 1000) of various colors are placed on a white sheet of paper wh ...
UIView是iOS中所有视图的基类,表示屏幕上的一块矩形区域。 UIView的基本属性包括: 1.frame,控制视图的显示位置和大小 2.backgroundColor,控制视图的背景颜色 3.alpha,控制视图的透明度,1.0表示不透明,0.0表示透明 4.opaque,是否不透明,可以使用 ...
分类:
其他好文 时间:
2016-09-04 22:32:02
阅读次数:
132
一.@代表引用资源 1.引用自定义资源。格式:@[package:]type/name android:text="@string/hello" 2.引用系统资源。格式:@android:type/name android:textColor="@android:color/opaque_red" ...
分类:
移动开发 时间:
2016-08-22 23:09:38
阅读次数:
228
web_about.backgroundColor = [UIColor clearColor]; web_about.opaque = NO; 最关键的是嵌入的HTML里: <body style = "background-color: transparent"> 如果有更好的方法, 请在评论里 ...
分类:
Web程序 时间:
2016-08-14 23:59:11
阅读次数:
451
1、问题:加载UIWebView底部有黑色边框问题。 设置UIWebView opaque为NO,然后设置其背景色为clearColor。 2、问题:iPhone真机输出[UIScreen mainScreen].bounds.size.width 不符合常规逻辑问题。(iPhone6s输出320, ...
分类:
移动开发 时间:
2016-08-05 15:42:17
阅读次数:
204
使用不透明视图。不透明的视图可以极大地提高渲染的速度。因此如非必要,可以将table cell及其子视图的opaque属性设为YES(默认值)。其中的特例包括背景色,它的alpha值应该为1(例如不要使用clearColor);图像的alpha值也应该为1,或者在画图时设为不透明。 不要重复创建不必 ...
分类:
其他好文 时间:
2016-07-10 21:26:57
阅读次数:
150
Shader "UnderStandPRR" { Properties { _MainTex ("Texture", 2D) = "white" {} } SubShader { Tags { "RenderType"="Opaque" } LOD 100 Pass { CGPROGRAM #pra ...
分类:
其他好文 时间:
2016-07-07 19:49:24
阅读次数:
149
优化TableView 正确使用`reuseIdentifier`来重用cells 尽量使所有的view opaque,包括cell自身,尽量减少不必要的透明 View 尽量避免渐变效果,图片缩放,离屏渲染 缓存行高 如果cell内现实的内容来自web,使用异步加载,缓存请求结果 使用`shadow ...
分类:
其他好文 时间:
2016-06-24 01:49:19
阅读次数:
387