iOS中的动画有两种实现方式,一种是UIView来实现动画,另一种动画是通过CALayer来实现,下面介绍两种动画的简单实现:一、UIView动画的实现UIView使用Context来实现动画关键代码://参数1动画名称参数2要实现动画的对象上下文
[UIViewbeginAnimations:@"attribute"context:_sh..
分类:
移动开发 时间:
2014-07-23 00:17:28
阅读次数:
689
1、在/etc/init.d/目录下编写脚本,名为nginx
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig: -
85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
...
分类:
其他好文 时间:
2014-07-22 22:39:13
阅读次数:
321
??
在终端启动程序关闭终端不退出的方法
一般情况下关闭终端时,那么在这个终端中启动的后台程序也会终止,要使终端关闭后,后台程序保持执行,使用这个指令:
nohup 命令 &
如:nohup test.sh &...
分类:
系统相关 时间:
2014-07-22 22:39:12
阅读次数:
206
在Ubuntu14.04下载好了VLC的源码后,VLC的Eclipse工程存放在"vlc-android"目录
root@dzt-VirtualBox:/home/dzt/android_vlc/android# ls
android-headers-gingerbread compile.sh find_modules.sh NEWS
android-headers-hc configure....
分类:
移动开发 时间:
2014-07-22 14:33:14
阅读次数:
494
Ubuntu12.04默认的shell是dash。查看当前shell的指向 ls -ls /bin/shsudo unlink /bin/shls -ls /bin/sh 此步可以跳过sudo ln -s /bin/bash /bin/shls -ls /bin/sh此步可以跳过
分类:
其他好文 时间:
2014-07-22 00:30:34
阅读次数:
195
实例一:第一步:使用vi创建一个文件**.sh(vi的使用这里暂不介绍)#!/bin/bash 注:这是指明有那个shell来解释下边的命令cd /var/log #切换目录到/var/log下(#是shell中的注释符)cat /dev/null > messages #这里用到啦输入输出重定向这...
分类:
其他好文 时间:
2014-07-22 00:07:36
阅读次数:
276
bool flock ( int handle, int operation [, int &wouldblock] );flock() 操作的 handle 必须是一个已经打开的文件指针。operation 可以是以下值之一:要取得共享锁定(读取程序),将 operation 设为 LOCK_SH...
分类:
Web程序 时间:
2014-07-22 00:07:34
阅读次数:
278
LOCK_EX是表示排它锁(Exclude),是独占的,一般用于写操作,而如果换成LOCK_SH(Share)则是共享,多用于读取。有时为了保证多进程对文件的读写都是唯一的,无论读写都进行LOCK_EX的请求。 以下是一段演示程序,...
分类:
其他好文 时间:
2014-07-21 23:31:03
阅读次数:
238
#!/bin/sh#POST-COMMITHOOK##Thepost-commithookisinvokedafteracommit.Subversionruns#thishookbyinvokingaprogram(script,executable,binary,etc.)#named‘post-commit‘(forwhichthisfileisatemplate)withthe#followingorderedarguments:##[1]REPOS-PATH(thepathtothisreposit..
分类:
其他好文 时间:
2014-07-21 15:25:17
阅读次数:
284
从www.boost.org下载当前boost库,当前文件名为:boost_1_55_0.tar.gz在当前位置解压。tar -xvf boost_1_55.tar.gz 进入解压后的目录,执行bootstarp.sh脚本。./bootstarp.sh 运行完毕后,目录中多出b2和bjam,运...
分类:
系统相关 时间:
2014-07-21 11:21:16
阅读次数:
360