将一个view 的背景设为透明 但view上的图标 不透明 实现类似iphone ipad 主页的滑动效果
将一个view 的背景设为透明 但view上的图标 不透明 代码:
[view setBackgroundColor:[UIColorcolorWithWhite:0alpha:0]];
实现类似iphone ipad 主页的滑动效果,思路:
1、只要将scrollview 设置为上述的透明,然后将scrollview 添加为一个view的子页面,而这个view 有背景图片就可以了。
这样,就实现了图标滑动而背景不会滑动的效果。
即,不要为scrollview 设置背景图片就好了。