题目:Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining...
分类:
移动开发 时间:
2014-10-27 01:44:33
阅读次数:
231
转自:http://blog.csdn.net/dqjyong/article/details/17896145IOS7中,不仅应用的风格有一定的变化,状态栏变化比较大,我们可以看到UIVIEWCONTROLLER的状态栏与导航栏基本是一体的。因此UIVIEWCONTROLLER的HIDE/SHOW...
分类:
移动开发 时间:
2014-10-26 22:29:29
阅读次数:
155
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
For example,
Given [0,1,0,2,1,0,1,3,2,1,2,1]...
分类:
移动开发 时间:
2014-10-26 14:26:31
阅读次数:
187
Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.Fo...
分类:
移动开发 时间:
2014-10-25 07:04:38
阅读次数:
181
关键代码: /// /// 创建Drill-Down样式的Title /// /// ChartControl /// title文字 /// 是否可见 public static void AddDrillDownTitle(this ChartControl chart, stri...
分类:
其他好文 时间:
2014-10-24 12:51:05
阅读次数:
108
1.导航元素,导航栏模拟淘宝网的导航<!DOCTYPEhtml><html><head><title>Bootstrap实例-嵌套列</title><linkhref="./bootstrap/css/bootstrap.min.css"rel="stylesheet"><scriptsrc="./scripts/jquery.min.js"></script><sc..
分类:
其他好文 时间:
2014-10-23 20:57:15
阅读次数:
284
http://blog.csdn.net/zoeice/article/details/8068671importjava.util.Vector;importandroid.content.Context;importandroid.graphics.Bitmap;importandroid.gr...
分类:
其他好文 时间:
2014-10-23 19:17:12
阅读次数:
254
http://blog.sina.com.cn/s/blog_63578f140100w56m.htmlUITabBar* tabBar = [[UITabBaralloc]initWithFrame:CGRectMake(40,0.0,240,30)];[mainView addSubview:t...
分类:
移动开发 时间:
2014-10-23 18:58:19
阅读次数:
144
1. #define的保护
所有头文件都应该使用#define 防止头文件被多重包含(multiple inclusion),命名格式
当是:___H_
为保证唯一性,头文件的命名应基于其所在项目源代码树的全路径。例如,项目foo 中的头
文件foo/src/bar/baz.h 按如下方式保护:
#ifndef FOO_BAR_BAZ_H_
#define FOO_BAR_BAZ_H_...
分类:
编程语言 时间:
2014-10-23 12:34:25
阅读次数:
231
下面介绍精灵、动画精灵、按钮精灵、文本的常用使用方法
一、精灵相关
1.添加精灵
//创建精灵
Sprite bar_up = new Sprite(400, 0, RegionRes.getRegion(Res.BAR_UP), getVertexBufferObjectManager());
//将精灵添加至BaseEntityGroup或其子类(如:Scene、L...
分类:
其他好文 时间:
2014-10-22 18:27:15
阅读次数:
175