安装Oracle11g 到100%的时候突然卡住,oracle database configuration assistant,如下图: ALT+TAB按键后出现,模板general-purpose.dbc不存在 这个是需要两个压缩文件同时选中一起解压到同一个文件夹,多坑啊,那两个压缩包不是par
分类:
数据库 时间:
2016-02-01 23:59:10
阅读次数:
598
调用一次计时器方法: //不重复,只调用一次。timer运行一次就会自动停止运行 self.locationTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector: @selector(LocationTimer)
分类:
移动开发 时间:
2016-01-31 03:09:56
阅读次数:
164
什么是NSTimer 官方给出解释是:“A timer provides a way to perform a delayed action or a periodic action. The timer waits until a certain time interval has elapsed
分类:
其他好文 时间:
2016-01-30 17:41:57
阅读次数:
113
NSTimer定时器 [NSTimer scheduledTimerWithTimeInterval:0.025 target:self selector:@selector(update) userInfo:nil repeats:YES]; //如果我们使用NSTimer定时器. 设置的执?行时
分类:
移动开发 时间:
2016-01-29 16:06:08
阅读次数:
133
不会android的H5不是好前端,最近搭建了下cordova的环境,在安装好JDK,cordova 5.4,ANT,Android studio配置好环境变量之后cordova build的错误并显示 卡住了,后来发现这个搜了下,发现需要查找project.properties 有两个,一个在pl
分类:
移动开发 时间:
2016-01-28 18:46:20
阅读次数:
528
1、计时器的使用[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(flyAction) userInfo:nil repeats:YES];2、随机数的使用arc4random()3、UIWindo...
分类:
移动开发 时间:
2016-01-26 10:38:37
阅读次数:
218
1. 必须要安装 nodejs,git2. 安装hexonode install -g hexo3. npm源的问题使在安装时有卡住的问题而导致无法安装,则需要更改npm的源npm config set registry="http://registry.cnpmjs.org”4. 执行完上面命令后...
分类:
其他好文 时间:
2016-01-22 00:11:02
阅读次数:
214
1.定时器[NSTimer scheduledTimerWithTimeInterval:多长时间变动一次target:谁的计时器 selector:@selector(方法名) userInfo:定时器信息 repeats:是否重复]如图,表示每1秒变动一次,给自己设定的计时器,调用下面的tim....
分类:
移动开发 时间:
2016-01-21 23:52:42
阅读次数:
322
在NSTimer代码后面加上以下代码,这样滚动scroll的时候就不会暂停了。NSRunLoop *t = [NSRunLoop currentRunLoop];[t addTimer:timerforMode:forMode:NSRunLoopCommonModes]其中timer是自定义的NST...
分类:
移动开发 时间:
2016-01-21 19:26:40
阅读次数:
145
1.NSTimer的一个类方法?答:功能:监听对象,计时执行方法.+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(n...
分类:
其他好文 时间:
2016-01-19 01:37:32
阅读次数:
180