当前位置: 编程技术>移动开发
本页文章导读:
▪requires compiler compliance level 5.0 or 6.0. Found '1.7' instead requires compiler compliance level 5.0 or 6.0. Found '1.7' instead.
自己到别的电脑上做的项目导入到自己电脑中时报错,提示
Android requires compiler compliance level 5.0 or 6.0. Found '1.7' instead. Please use Android Tools &.........
▪ UIScrollView 自动滚动相本 UIScrollView 自动滚动相册
假如你用UIScrollView制作了一个横向的相册,并且每页显示一张图,有点想很多网站首页的广告
//广告定时任务
[NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selecto.........
▪ mac 终端下令 mac 终端命令
history //显示使用过的所有命令
open 目录名 //在finderx下打开当前目录
pwd //显示当前目录
mkdir //创建目录
在Unix系统下,系统会给每一个运行的程序分配一个运行的“.........
[1]requires compiler compliance level 5.0 or 6.0. Found '1.7' instead
来源: 互联网 发布时间: 2014-02-18
requires compiler compliance level 5.0 or 6.0. Found '1.7' instead.
自己到别的电脑上做的项目导入到自己电脑中时报错,提示
Android requires compiler compliance level 5.0 or 6.0. Found '1.7' instead. Please use Android Tools > Fix Project Properties.
一:
先下载Android1.6(API4)
然后项目右键 ->android tools->Fix Project
二;
检查Project->Properties->Java Compiler
确认JDK compliance被设置为1.6,并且enable specific seetings
[2] UIScrollView 自动滚动相本
来源: 互联网 发布时间: 2014-02-18
UIScrollView 自动滚动相册
假如你用UIScrollView制作了一个横向的相册,并且每页显示一张图,有点想很多网站首页的广告 //广告定时任务 [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(scrollTimer) userInfo:nil repeats:YES]; //设置滚动 -(void)scrollTimer{ timerCount++; if (timerCount >= 4) { timerCount=0; } [adView setContentOffset:CGPointMake(tableWidth * timerCount, 0)animated:YES]; [pageControl setCurrentPage:timerCount]; }
[3] mac 终端下令
来源: 互联网 发布时间: 2014-02-18
mac 终端命令
history //显示使用过的所有命令
open 目录名 //在finderx下打开当前目录
pwd //显示当前目录
mkdir //创建目录
在Unix系统下,系统会给每一个运行的程序分配一个运行的“身份证号”,就是PID。它相当与windows系统下的进程。
top
查看当前系统运行的所有的进程
ps x | grep Word
ps x是查询运行程序的PID,其中的x是参数,好比ls -l命令一样。
grep是一条指定命令,grep的后面跟你想要找的程序名称即可。
而“|”是一个逻辑运算符,作用就是要告诉计算机,要查询运行程序的PID,同时还要满足这个程序是word的这个先决条件。
kill PID
可以杀死某个程序,直接推出程序。
vim readme.txt 终端下编辑文本文件
cd .. 返回上一层
cd .
man zip 显示帮助文档
find
============================================
su
su root
su passwd root
sudo
telnet 192.168.0.47 8080
sudo find / -name ".Ds)Store" -depth -exec rm {} \;
最新技术文章: